blob: c3d4fdfe7a88e680673cb527041f6d6b0ef9e9bf [file] [log] [blame]
package org.eclipse.emf.codegen.ecore.templates.model;
import java.util.*;
import org.eclipse.emf.codegen.ecore.genmodel.*;
import org.eclipse.ocl.examples.codegen.genmodel.OCLGenModelUtil;
public class SwitchClass
{
protected static String nl;
public static synchronized SwitchClass create(String lineSeparator)
{
nl = lineSeparator;
SwitchClass result = new SwitchClass();
nl = null;
return result;
}
public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
protected final String TEXT_1 = "";
protected final String TEXT_2 = "/**";
protected final String TEXT_3 = NL + " * ";
protected final String TEXT_4 = NL + " */" + NL + "package ";
protected final String TEXT_5 = ";" + NL;
protected final String TEXT_6 = NL + NL + "/**" + NL + " * <!-- begin-user-doc -->" + NL + " * The <b>Switch</b> for the model's inheritance hierarchy." + NL + " * It supports the call {@link #doSwitch(EObject) doSwitch(object)}" + NL + " * to invoke the <code>caseXXX</code> method for each class of the model," + NL + " * starting with the actual class of the object" + NL + " * and proceeding up the inheritance hierarchy" + NL + " * until a non-null result is returned," + NL + " * which is the result of the switch." + NL + " * <!-- end-user-doc -->" + NL + " * @see ";
protected final String TEXT_7 = NL + " * @generated" + NL + " */";
protected final String TEXT_8 = NL + "@Deprecated";
protected final String TEXT_9 = NL + "\t@SuppressWarnings(\"deprecation\")";
protected final String TEXT_10 = NL + "public class ";
protected final String TEXT_11 = "<@Nullable ";
protected final String TEXT_12 = " extends Switch";
protected final String TEXT_13 = NL + "{";
protected final String TEXT_14 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic static final ";
protected final String TEXT_15 = " copyright = ";
protected final String TEXT_16 = ";";
protected final String TEXT_17 = NL;
protected final String TEXT_18 = NL + "\t/**" + NL + "\t * The cached model package" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected static ";
protected final String TEXT_19 = " modelPackage;" + NL + "" + NL + "\t/**" + NL + "\t * Creates an instance of the switch." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ";
protected final String TEXT_20 = "()" + NL + "\t{" + NL + "\t\tif (modelPackage == null)" + NL + "\t\t{" + NL + "\t\t\tmodelPackage = ";
protected final String TEXT_21 = ".eINSTANCE;" + NL + "\t\t}" + NL + "\t}" + NL;
protected final String TEXT_22 = NL + "\t/**" + NL + "\t * Checks whether this is a switch for the given package." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @param ePackage the package in question." + NL + "\t * @return whether this is a switch for the given package." + NL + "\t * @generated" + NL + "\t */" + NL + "\t@Override" + NL + "\tprotected boolean isSwitchFor(EPackage ePackage)" + NL + "\t{" + NL + "\t\treturn ePackage == modelPackage;" + NL + "\t}";
protected final String TEXT_23 = NL + "\t/**" + NL + "\t * Calls <code>caseXXX</code> for each class of the model until one returns a non null result; it yields that result." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @return the first non-null result returned by a <code>caseXXX</code> call." + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ";
protected final String TEXT_24 = " doSwitch(EObject theEObject)" + NL + "\t{" + NL + "\t\treturn doSwitch(theEObject.eClass(), theEObject);" + NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * Calls <code>caseXXX</code> for each class of the model until one returns a non null result; it yields that result." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @return the first non-null result returned by a <code>caseXXX</code> call." + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected ";
protected final String TEXT_25 = " doSwitch(EClass theEClass, EObject theEObject)" + NL + "\t{" + NL + "\t\tif (theEClass.eContainer() == modelPackage)" + NL + "\t\t{" + NL + "\t\t\treturn doSwitch(theEClass.getClassifierID(), theEObject);" + NL + "\t\t}";
protected final String TEXT_26 = NL + "\t\telse" + NL + "\t\t{";
protected final String TEXT_27 = NL + "\t\t";
protected final String TEXT_28 = "<";
protected final String TEXT_29 = ">";
protected final String TEXT_30 = " eSuperTypes = theEClass.getESuperTypes();" + NL + "\t\t";
protected final String TEXT_31 = "return" + NL + "\t\t";
protected final String TEXT_32 = "\teSuperTypes.isEmpty() ?" + NL + "\t\t";
protected final String TEXT_33 = "\t\tdefaultCase(theEObject) :" + NL + "\t\t";
protected final String TEXT_34 = "\t\tdoSwitch(";
protected final String TEXT_35 = "(EClass)";
protected final String TEXT_36 = "eSuperTypes.get(0), theEObject);";
protected final String TEXT_37 = NL + "\t\t}";
protected final String TEXT_38 = NL + "\t}";
protected final String TEXT_39 = NL + NL + "\t/**" + NL + "\t * Calls <code>caseXXX</code> for each class of the model until one returns a non null result; it yields that result." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @return the first non-null result returned by a <code>caseXXX</code> call." + NL + "\t * @generated" + NL + "\t */";
protected final String TEXT_40 = NL + "\t@Override";
protected final String TEXT_41 = NL + "\tprotected ";
protected final String TEXT_42 = " doSwitch(int classifierID, EObject theEObject)" + NL + "\t{" + NL + "\t\tswitch (classifierID)" + NL + "\t\t{";
protected final String TEXT_43 = NL + "\t\t\tcase ";
protected final String TEXT_44 = ":" + NL + "\t\t\t{" + NL + "\t\t\t\t";
protected final String TEXT_45 = "@SuppressWarnings(\"unchecked\") ";
protected final String TEXT_46 = " ";
protected final String TEXT_47 = " = (";
protected final String TEXT_48 = ")theEObject;" + NL + "\t\t\t\t";
protected final String TEXT_49 = " = case";
protected final String TEXT_50 = "(";
protected final String TEXT_51 = ");";
protected final String TEXT_52 = NL + "\t\t\t\tif (";
protected final String TEXT_53 = " == null) ";
protected final String TEXT_54 = " = ";
protected final String TEXT_55 = ")";
protected final String TEXT_56 = "case";
protected final String TEXT_57 = " = defaultCase(theEObject);" + NL + "\t\t\t\treturn ";
protected final String TEXT_58 = ";" + NL + "\t\t\t}";
protected final String TEXT_59 = NL + "\t\t\tdefault: return defaultCase(theEObject);" + NL + "\t\t}" + NL + "\t}";
protected final String TEXT_60 = NL + NL + "\t/**" + NL + "\t * Returns the result of interpreting the object as an instance of '<em>";
protected final String TEXT_61 = "</em>'." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * This implementation returns null;" + NL + "\t * returning a non-null result will terminate the switch." + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @param object the target of the switch." + NL + "\t * @return the result of interpreting the object as an instance of '<em>";
protected final String TEXT_62 = "</em>'." + NL + "\t * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)";
protected final String TEXT_63 = NL + "\t * ";
protected final String TEXT_64 = NL + "\t * @generated" + NL + "\t */";
protected final String TEXT_65 = NL + "\t@Deprecated";
protected final String TEXT_66 = NL + "\tpublic ";
protected final String TEXT_67 = " case";
protected final String TEXT_68 = " object)" + NL + "\t{" + NL + "\t\treturn null;" + NL + "\t}";
protected final String TEXT_69 = NL + NL + "\t/**" + NL + "\t * Returns the result of interpreting the object as an instance of '<em>EObject</em>'." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * This implementation returns null;" + NL + "\t * returning a non-null result will terminate the switch, but this is the last case anyway." + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @param object the target of the switch." + NL + "\t * @return the result of interpreting the object as an instance of '<em>EObject</em>'." + NL + "\t * @see #doSwitch(org.eclipse.emf.ecore.EObject)" + NL + "\t * @generated" + NL + "\t */";
protected final String TEXT_70 = " defaultCase(EObject object)" + NL + "\t{" + NL + "\t\treturn null;" + NL + "\t}" + NL + "" + NL + "} //";
public String generate(Object argument)
{
final StringBuffer stringBuffer = new StringBuffer();
/**
* Copyright (c) 2002-2019 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*/
GenPackage genPackage = (GenPackage)argument; GenModel genModel=genPackage.getGenModel();
final boolean isJDK50 = genModel.getComplianceLevel().getValue() >= GenJDKLevel.JDK50;
boolean supportsComposition = genModel.getRuntimeVersion().getValue() >= GenRuntimeVersion.EMF27_VALUE;
stringBuffer.append(TEXT_1);
stringBuffer.append(TEXT_2);
{GenBase copyrightHolder = argument instanceof GenBase ? (GenBase)argument : argument instanceof Object[] && ((Object[])argument)[0] instanceof GenBase ? (GenBase)((Object[])argument)[0] : null;
if (copyrightHolder != null && copyrightHolder.hasCopyright()) {
stringBuffer.append(TEXT_3);
stringBuffer.append(copyrightHolder.getCopyright(copyrightHolder.getGenModel().getIndentation(stringBuffer)));
}}
stringBuffer.append(TEXT_4);
stringBuffer.append(genPackage.getUtilitiesPackageName());
stringBuffer.append(TEXT_5);
if (supportsComposition) {
genModel.addImport("org.eclipse.emf.ecore.EObject");
genModel.addImport("org.eclipse.emf.ecore.EPackage");
genModel.addImport("org.eclipse.emf.ecore.util.Switch");
} else {
genModel.addImport("org.eclipse.emf.ecore.EClass");
genModel.addImport("org.eclipse.emf.ecore.EObject");
}
genModel.addImport("org.eclipse.jdt.annotation.Nullable");
if (!genPackage.hasJavaLangConflict() && !genPackage.getUtilitiesPackageName().equals(genPackage.getInterfacePackageName())) genModel.addImport(genPackage.getInterfacePackageName() + ".*");
String templateParameterName = null;
if (genModel.useGenerics())
{
Set<String> usedNames = new HashSet<String>();
for (GenEnum genEnum : genPackage.getGenEnums())
{
usedNames.add(genEnum.getName());
}
for (GenClass genClass : genPackage.getAllSwitchGenClasses())
{
if (!genClass.isDynamic() && !genClass.isExternalInterface())
{
usedNames.add(genClass.getName());
}
for (GenTypeParameter genTypeParameter : genClass.getGenTypeParameters())
{
usedNames.add(genTypeParameter.getName());
}
}
templateParameterName = "T";
for (int i = 1; usedNames.contains(templateParameterName); ++i)
{
templateParameterName = "T" + i;
}
}
String templateParameters = genModel.useGenerics() ? "<" + templateParameterName + ">" : "";
String returnType = genModel.useGenerics() ? templateParameterName : genModel.getImportedName("java.lang.Object");
genModel.markImportLocation(stringBuffer);
stringBuffer.append(TEXT_6);
stringBuffer.append(genPackage.getQualifiedPackageInterfaceName());
if (OCLGenModelUtil.INSTANCE.hasAPITags(genPackage)) {
stringBuffer.append(TEXT_3);
stringBuffer.append(OCLGenModelUtil.INSTANCE.getAPITags(genPackage, genModel.getIndentation(stringBuffer)));
}
stringBuffer.append(TEXT_7);
if (isJDK50 && OCLGenModelUtil.INSTANCE.hasAPIDeprecatedTag(genPackage)) {
stringBuffer.append(TEXT_8);
} else if (isJDK50 && OCLGenModelUtil.INSTANCE.hasAPIDeprecatedTag(genPackage.getGenClasses())) {
stringBuffer.append(TEXT_9);
}
stringBuffer.append(TEXT_10);
stringBuffer.append(genPackage.getSwitchClassName());
stringBuffer.append(TEXT_11);
stringBuffer.append(templateParameters.substring(1));
if (supportsComposition){
stringBuffer.append(TEXT_12);
stringBuffer.append(templateParameters);
}
stringBuffer.append(TEXT_13);
if (genModel.hasCopyrightField()) {
stringBuffer.append(TEXT_14);
stringBuffer.append(genModel.getImportedName("java.lang.String"));
stringBuffer.append(TEXT_15);
stringBuffer.append(genModel.getCopyrightFieldLiteral());
stringBuffer.append(TEXT_16);
stringBuffer.append(genModel.getNonNLS());
stringBuffer.append(TEXT_17);
}
stringBuffer.append(TEXT_18);
stringBuffer.append(genPackage.getImportedPackageInterfaceName());
stringBuffer.append(TEXT_19);
stringBuffer.append(genPackage.getSwitchClassName());
stringBuffer.append(TEXT_20);
stringBuffer.append(genPackage.getImportedPackageInterfaceName());
stringBuffer.append(TEXT_21);
if (supportsComposition) {
stringBuffer.append(TEXT_22);
} else { boolean isUnnecessaryElse = genModel.isUnnecessaryElse(); String indent = isUnnecessaryElse ? "" : "\t";
stringBuffer.append(TEXT_23);
stringBuffer.append(returnType);
stringBuffer.append(TEXT_24);
stringBuffer.append(returnType);
stringBuffer.append(TEXT_25);
if (!isUnnecessaryElse) {
stringBuffer.append(TEXT_26);
}
stringBuffer.append(TEXT_27);
stringBuffer.append(indent);
stringBuffer.append(genModel.getImportedName("java.util.List"));
if (genModel.useGenerics()) {
stringBuffer.append(TEXT_28);
stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.EClass"));
stringBuffer.append(TEXT_29);
}
stringBuffer.append(TEXT_30);
stringBuffer.append(indent);
stringBuffer.append(TEXT_31);
stringBuffer.append(indent);
stringBuffer.append(TEXT_32);
stringBuffer.append(indent);
stringBuffer.append(TEXT_33);
stringBuffer.append(indent);
stringBuffer.append(TEXT_34);
if (!genModel.useGenerics()) {
stringBuffer.append(TEXT_35);
}
stringBuffer.append(TEXT_36);
if (!isUnnecessaryElse) {
stringBuffer.append(TEXT_37);
}
stringBuffer.append(TEXT_38);
}
stringBuffer.append(TEXT_39);
if (supportsComposition) {
stringBuffer.append(TEXT_40);
}
stringBuffer.append(TEXT_41);
stringBuffer.append(returnType);
stringBuffer.append(TEXT_42);
for (GenClass genClass : genPackage.getGenClasses()) {
if (!genClass.isEObject()) { String result = "result".equals(genClass.getSafeUncapName()) ? "theResult" : "result";
stringBuffer.append(TEXT_43);
stringBuffer.append(genPackage.getClassifierValue(genClass));
stringBuffer.append(TEXT_44);
if (genClass.isUncheckedCast() || genClass.isMapEntry() && isJDK50) {
stringBuffer.append(TEXT_45);
}
stringBuffer.append(genClass.getImportedInterfaceName());
stringBuffer.append(genClass.getInterfaceWildTypeArguments());
stringBuffer.append(TEXT_46);
stringBuffer.append(genClass.getSafeUncapName());
stringBuffer.append(TEXT_47);
stringBuffer.append(genClass.getImportedInterfaceName());
stringBuffer.append(genClass.getInterfaceWildTypeArguments());
stringBuffer.append(TEXT_48);
stringBuffer.append(returnType);
stringBuffer.append(TEXT_46);
stringBuffer.append(result);
stringBuffer.append(TEXT_49);
stringBuffer.append(genPackage.getClassUniqueName(genClass));
stringBuffer.append(TEXT_50);
stringBuffer.append(genClass.getSafeUncapName());
stringBuffer.append(TEXT_51);
for (GenClass baseGenClass : genClass.getSwitchGenClasses()) {
stringBuffer.append(TEXT_52);
stringBuffer.append(result);
stringBuffer.append(TEXT_53);
stringBuffer.append(result);
stringBuffer.append(TEXT_54);
if (genClass.isRawBaseClass(baseGenClass)) {
stringBuffer.append(TEXT_50);
stringBuffer.append(returnType);
stringBuffer.append(TEXT_55);
}
stringBuffer.append(TEXT_56);
stringBuffer.append(genPackage.getClassUniqueName(baseGenClass));
stringBuffer.append(TEXT_50);
if (genClass.isMapEntry()) {
stringBuffer.append(TEXT_50);
stringBuffer.append(baseGenClass.getImportedInterfaceName());
stringBuffer.append(baseGenClass.getInterfaceTypeArguments());
stringBuffer.append(TEXT_55);
}
stringBuffer.append(genClass.getSafeUncapName());
stringBuffer.append(TEXT_51);
}
stringBuffer.append(TEXT_52);
stringBuffer.append(result);
stringBuffer.append(TEXT_53);
stringBuffer.append(result);
stringBuffer.append(TEXT_57);
stringBuffer.append(result);
stringBuffer.append(TEXT_58);
}
}
stringBuffer.append(TEXT_59);
for (GenClass genClass : genPackage.getAllSwitchGenClasses()) {
stringBuffer.append(TEXT_60);
stringBuffer.append(genClass.getFormattedName());
stringBuffer.append(TEXT_61);
stringBuffer.append(genClass.getFormattedName());
stringBuffer.append(TEXT_62);
if (OCLGenModelUtil.INSTANCE.hasAPITags(genClass)) {
stringBuffer.append(TEXT_63);
stringBuffer.append(OCLGenModelUtil.INSTANCE.getAPITags(genClass, genModel.getIndentation(stringBuffer)));
}
stringBuffer.append(TEXT_64);
if (isJDK50 && OCLGenModelUtil.INSTANCE.hasAPIDeprecatedTag(genClass)) {
stringBuffer.append(TEXT_65);
}
stringBuffer.append(TEXT_66);
stringBuffer.append(genClass.getTypeParameters());
stringBuffer.append(returnType);
stringBuffer.append(TEXT_67);
stringBuffer.append(genPackage.getClassUniqueName(genClass));
stringBuffer.append(TEXT_50);
stringBuffer.append(genClass.getImportedInterfaceName());
stringBuffer.append(genClass.getInterfaceTypeArguments());
stringBuffer.append(TEXT_68);
}
stringBuffer.append(TEXT_69);
if (supportsComposition) {
stringBuffer.append(TEXT_40);
}
stringBuffer.append(TEXT_66);
stringBuffer.append(returnType);
stringBuffer.append(TEXT_70);
stringBuffer.append(genPackage.getSwitchClassName());
genModel.emitSortedImports();
stringBuffer.append(TEXT_17);
return stringBuffer.toString();
}
}