Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.dawn.examples.acore.graphiti/src/org/eclipse/emf/cdo/dawn/examples/acore/graphiti/features/AcoreCreateAClassFeature.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.dawn.examples.acore.graphiti/src/org/eclipse/emf/cdo/dawn/examples/acore/graphiti/features/AcoreCreateAClassFeature.java106
1 files changed, 53 insertions, 53 deletions
diff --git a/plugins/org.eclipse.emf.cdo.dawn.examples.acore.graphiti/src/org/eclipse/emf/cdo/dawn/examples/acore/graphiti/features/AcoreCreateAClassFeature.java b/plugins/org.eclipse.emf.cdo.dawn.examples.acore.graphiti/src/org/eclipse/emf/cdo/dawn/examples/acore/graphiti/features/AcoreCreateAClassFeature.java
index 3c00d7dfcc..86a1e2ebf9 100644
--- a/plugins/org.eclipse.emf.cdo.dawn.examples.acore.graphiti/src/org/eclipse/emf/cdo/dawn/examples/acore/graphiti/features/AcoreCreateAClassFeature.java
+++ b/plugins/org.eclipse.emf.cdo.dawn.examples.acore.graphiti/src/org/eclipse/emf/cdo/dawn/examples/acore/graphiti/features/AcoreCreateAClassFeature.java
@@ -1,53 +1,53 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Martin Fluegge - initial API and implementation
- *
- */
-package org.eclipse.emf.cdo.dawn.examples.acore.graphiti.features;
-
-import org.eclipse.emf.cdo.dawn.examples.acore.AClass;
-import org.eclipse.emf.cdo.dawn.examples.acore.AcoreFactory;
-
-import org.eclipse.emf.ecore.EObject;
-
-import org.eclipse.graphiti.features.IFeatureProvider;
-import org.eclipse.graphiti.features.context.ICreateContext;
-import org.eclipse.graphiti.mm.pictograms.Diagram;
-
-/**
- * @author Martin Fluegge
- */
-public class AcoreCreateAClassFeature extends AcoreBasicCreateElementFeature
-{
- public AcoreCreateAClassFeature(IFeatureProvider fp)
- {
- // set name and description of the creation feature
- super(fp, "AClass", "Create AClass");
- }
-
- @Override
- public boolean canCreate(ICreateContext context)
- {
- return context.getTargetContainer() instanceof Diagram;
- }
-
- @Override
- public String getCreateImageId()
- {
- return "org.eclipse.graphiti.examples.tutorial.ereference";
- }
-
- @Override
- protected EObject createElement()
- {
- AClass aClass = AcoreFactory.eINSTANCE.createAClass();
- aClass.setName("AClass");
- return aClass;
- }
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Martin Fluegge - initial API and implementation
+ *
+ */
+package org.eclipse.emf.cdo.dawn.examples.acore.graphiti.features;
+
+import org.eclipse.emf.cdo.dawn.examples.acore.AClass;
+import org.eclipse.emf.cdo.dawn.examples.acore.AcoreFactory;
+
+import org.eclipse.emf.ecore.EObject;
+
+import org.eclipse.graphiti.features.IFeatureProvider;
+import org.eclipse.graphiti.features.context.ICreateContext;
+import org.eclipse.graphiti.mm.pictograms.Diagram;
+
+/**
+ * @author Martin Fluegge
+ */
+public class AcoreCreateAClassFeature extends AcoreBasicCreateElementFeature
+{
+ public AcoreCreateAClassFeature(IFeatureProvider fp)
+ {
+ // set name and description of the creation feature
+ super(fp, "AClass", "Create AClass");
+ }
+
+ @Override
+ public boolean canCreate(ICreateContext context)
+ {
+ return context.getTargetContainer() instanceof Diagram;
+ }
+
+ @Override
+ public String getCreateImageId()
+ {
+ return "org.eclipse.graphiti.examples.tutorial.ereference";
+ }
+
+ @Override
+ protected EObject createElement()
+ {
+ AClass aClass = AcoreFactory.eINSTANCE.createAClass();
+ aClass.setName("AClass");
+ return aClass;
+ }
+}

Back to the top