Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkhussey2007-03-22 16:46:16 +0000
committerkhussey2007-03-22 16:46:16 +0000
commit175d354087dc58a98ba78fca79c56b0b71d43dd2 (patch)
tree0c41ae0c266fce2f7e77f1e0f2c90702caf4ed72 /plugins/org.eclipse.uml2.codegen.ecore
parenta2c07d38c87715ce7b3f7cbeac95ea2d911a4b7f (diff)
downloadorg.eclipse.uml2-175d354087dc58a98ba78fca79c56b0b71d43dd2.tar.gz
org.eclipse.uml2-175d354087dc58a98ba78fca79c56b0b71d43dd2.tar.xz
org.eclipse.uml2-175d354087dc58a98ba78fca79c56b0b71d43dd2.zip
[160679] Regenerating based on changes in EMF.
Diffstat (limited to 'plugins/org.eclipse.uml2.codegen.ecore')
-rw-r--r--plugins/org.eclipse.uml2.codegen.ecore/src/org/eclipse/uml2/codegen/ecore/templates/edit/ItemProvider.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.uml2.codegen.ecore/src/org/eclipse/uml2/codegen/ecore/templates/edit/ItemProvider.java b/plugins/org.eclipse.uml2.codegen.ecore/src/org/eclipse/uml2/codegen/ecore/templates/edit/ItemProvider.java
index bdd51c8a0..17e6a2b57 100644
--- a/plugins/org.eclipse.uml2.codegen.ecore/src/org/eclipse/uml2/codegen/ecore/templates/edit/ItemProvider.java
+++ b/plugins/org.eclipse.uml2.codegen.ecore/src/org/eclipse/uml2/codegen/ecore/templates/edit/ItemProvider.java
@@ -159,7 +159,7 @@ public class ItemProvider
protected final String TEXT_140 = "(notification, notification.getNotifier(), true, true));" + NL + "\t\t\t\treturn;";
protected final String TEXT_141 = NL + "\t\t}";
protected final String TEXT_142 = NL + "\t\tsuper.notifyChanged(notification);" + NL + "\t}" + NL;
- protected final String TEXT_143 = NL + "\t/**" + NL + "\t * This adds to the collection of {@link org.eclipse.emf.edit.command.CommandParameter}s" + NL + "\t * describing all of the children that can be created under this object." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
+ protected final String TEXT_143 = NL + "\t/**" + NL + "\t * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children" + NL + "\t * that can be created under this object." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
protected final String TEXT_144 = NL + "\t@Override";
protected final String TEXT_145 = NL + "\tprotected void collectNewChildDescriptors(";
protected final String TEXT_146 = " newChildDescriptors, Object object)" + NL + "\t{" + NL + "\t\tsuper.collectNewChildDescriptors(newChildDescriptors, object);";
@@ -659,7 +659,7 @@ public class ItemProvider
stringBuffer.append(TEXT_144);
}
stringBuffer.append(TEXT_145);
- stringBuffer.append(genModel.getImportedName(genModel.useGenerics() ? "java.util.Collection<org.eclipse.emf.edit.command.CommandParameter>" : "java.util.Collection"));
+ stringBuffer.append(genModel.getImportedName(genModel.useGenerics() ? "java.util.Collection<java.lang.Object>" : "java.util.Collection"));
stringBuffer.append(TEXT_146);
for (GenFeature createFeature : genClass.getCrossPackageCreateChildFeatures()) {
for (GenClass createClass : genClass.getCrossPackageChildrenClasses(createFeature)) {

Back to the top