blob: fd237028974b595806a33a727fa02b24d1ab6f7e [file] [log] [blame]
/*******************************************************************************
* Copyright 2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* All rights reserved. This program and the accompanying materials
* are made available under the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
******************************************************************************/
package org.eclipse.emf.emfstore.server.model.util;
import java.util.List;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.emfstore.common.model.IdentifiableElement;
import org.eclipse.emf.emfstore.common.model.UniqueIdentifier;
import org.eclipse.emf.emfstore.server.model.AuthenticationInformation;
import org.eclipse.emf.emfstore.server.model.ClientVersionInfo;
import org.eclipse.emf.emfstore.server.model.FileIdentifier;
import org.eclipse.emf.emfstore.server.model.ModelPackage;
import org.eclipse.emf.emfstore.server.model.ProjectHistory;
import org.eclipse.emf.emfstore.server.model.ProjectId;
import org.eclipse.emf.emfstore.server.model.ProjectInfo;
import org.eclipse.emf.emfstore.server.model.ServerSpace;
import org.eclipse.emf.emfstore.server.model.SessionId;
import org.eclipse.emf.emfstore.server.model.VersionInfo;
/**
* <!-- begin-user-doc --> The <b>Switch</b> for the model's inheritance
* hierarchy. It supports the call {@link #doSwitch(EObject) doSwitch(object)}
* to invoke the <code>caseXXX</code> method for each class of the model,
* starting with the actual class of the object and proceeding up the
* inheritance hierarchy until a non-null result is returned, which is the
* result of the switch. <!-- end-user-doc -->
*
* @see org.eclipse.emf.emfstore.server.model.ModelPackage
* @generated
*/
public class ModelSwitch<T> {
/**
* The cached model package <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
protected static ModelPackage modelPackage;
/**
* Creates an instance of the switch. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
public ModelSwitch() {
if (modelPackage == null) {
modelPackage = ModelPackage.eINSTANCE;
}
}
/**
* Calls <code>caseXXX</code> for each class of the model until one returns
* a non null result; it yields that result. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @return the first non-null result returned by a <code>caseXXX</code>
* call.
* @generated
*/
public T doSwitch(EObject theEObject) {
return doSwitch(theEObject.eClass(), theEObject);
}
/**
* Calls <code>caseXXX</code> for each class of the model until one returns
* a non null result; it yields that result. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @return the first non-null result returned by a <code>caseXXX</code>
* call.
* @generated
*/
protected T doSwitch(EClass theEClass, EObject theEObject) {
if (theEClass.eContainer() == modelPackage) {
return doSwitch(theEClass.getClassifierID(), theEObject);
} else {
List<EClass> eSuperTypes = theEClass.getESuperTypes();
return eSuperTypes.isEmpty() ? defaultCase(theEObject) : doSwitch(
eSuperTypes.get(0), theEObject);
}
}
/**
* Calls <code>caseXXX</code> for each class of the model until one returns
* a non null result; it yields that result. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @return the first non-null result returned by a <code>caseXXX</code>
* call.
* @generated
*/
protected T doSwitch(int classifierID, EObject theEObject) {
switch (classifierID) {
case ModelPackage.PROJECT_HISTORY: {
ProjectHistory projectHistory = (ProjectHistory) theEObject;
T result = caseProjectHistory(projectHistory);
if (result == null)
result = defaultCase(theEObject);
return result;
}
case ModelPackage.PROJECT_INFO: {
ProjectInfo projectInfo = (ProjectInfo) theEObject;
T result = caseProjectInfo(projectInfo);
if (result == null)
result = defaultCase(theEObject);
return result;
}
case ModelPackage.SESSION_ID: {
SessionId sessionId = (SessionId) theEObject;
T result = caseSessionId(sessionId);
if (result == null)
result = caseUniqueIdentifier(sessionId);
if (result == null)
result = defaultCase(theEObject);
return result;
}
case ModelPackage.SERVER_SPACE: {
ServerSpace serverSpace = (ServerSpace) theEObject;
T result = caseServerSpace(serverSpace);
if (result == null)
result = defaultCase(theEObject);
return result;
}
case ModelPackage.PROJECT_ID: {
ProjectId projectId = (ProjectId) theEObject;
T result = caseProjectId(projectId);
if (result == null)
result = caseUniqueIdentifier(projectId);
if (result == null)
result = defaultCase(theEObject);
return result;
}
case ModelPackage.VERSION_INFO: {
VersionInfo versionInfo = (VersionInfo) theEObject;
T result = caseVersionInfo(versionInfo);
if (result == null)
result = defaultCase(theEObject);
return result;
}
case ModelPackage.CLIENT_VERSION_INFO: {
ClientVersionInfo clientVersionInfo = (ClientVersionInfo) theEObject;
T result = caseClientVersionInfo(clientVersionInfo);
if (result == null)
result = defaultCase(theEObject);
return result;
}
case ModelPackage.FILE_IDENTIFIER: {
FileIdentifier fileIdentifier = (FileIdentifier) theEObject;
T result = caseFileIdentifier(fileIdentifier);
if (result == null)
result = caseIdentifiableElement(fileIdentifier);
if (result == null)
result = defaultCase(theEObject);
return result;
}
case ModelPackage.AUTHENTICATION_INFORMATION: {
AuthenticationInformation authenticationInformation = (AuthenticationInformation) theEObject;
T result = caseAuthenticationInformation(authenticationInformation);
if (result == null)
result = defaultCase(theEObject);
return result;
}
default:
return defaultCase(theEObject);
}
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Project History</em>'. <!-- begin-user-doc --> This implementation
* returns null; returning a non-null result will terminate the switch. <!--
* end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Project History</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseProjectHistory(ProjectHistory object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Project Info</em>'. <!-- begin-user-doc --> This implementation
* returns null; returning a non-null result will terminate the switch. <!--
* end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Project Info</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseProjectInfo(ProjectInfo object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Session Id</em>'. <!-- begin-user-doc --> This implementation returns
* null; returning a non-null result will terminate the switch. <!--
* end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Session Id</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseSessionId(SessionId object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Server Space</em>'. <!-- begin-user-doc --> This implementation
* returns null; returning a non-null result will terminate the switch. <!--
* end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Server Space</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseServerSpace(ServerSpace object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Project Id</em>'. <!-- begin-user-doc --> This implementation returns
* null; returning a non-null result will terminate the switch. <!--
* end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Project Id</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseProjectId(ProjectId object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Version Info</em>'. <!-- begin-user-doc --> This implementation
* returns null; returning a non-null result will terminate the switch. <!--
* end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Version Info</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseVersionInfo(VersionInfo object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Client Version Info</em>'. <!-- begin-user-doc --> This
* implementation returns null; returning a non-null result will terminate
* the switch. <!-- end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Client Version Info</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseClientVersionInfo(ClientVersionInfo object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>File Identifier</em>'. <!-- begin-user-doc --> This implementation
* returns null; returning a non-null result will terminate the switch. <!--
* end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>File Identifier</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseFileIdentifier(FileIdentifier object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Authentication Information</em>'. <!-- begin-user-doc --> This
* implementation returns null; returning a non-null result will terminate
* the switch. <!-- end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Authentication Information</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseAuthenticationInformation(AuthenticationInformation object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Unique Identifier</em>'. <!-- begin-user-doc --> This implementation
* returns null; returning a non-null result will terminate the switch. <!--
* end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Unique Identifier</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseUniqueIdentifier(UniqueIdentifier object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>Identifiable Element</em>'. <!-- begin-user-doc --> This
* implementation returns null; returning a non-null result will terminate
* the switch. <!-- end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>Identifiable Element</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
* @generated
*/
public T caseIdentifiableElement(IdentifiableElement object) {
return null;
}
/**
* Returns the result of interpreting the object as an instance of '
* <em>EObject</em>'. <!-- begin-user-doc --> This implementation returns
* null; returning a non-null result will terminate the switch, but this is
* the last case anyway. <!-- end-user-doc -->
*
* @param object
* the target of the switch.
* @return the result of interpreting the object as an instance of '
* <em>EObject</em>'.
* @see #doSwitch(org.eclipse.emf.ecore.EObject)
* @generated
*/
public T defaultCase(EObject object) {
return null;
}
} // ModelSwitch