Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/impl/ocl/tracker/activeocl/ContextData.java')
-rwxr-xr-xplugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/impl/ocl/tracker/activeocl/ContextData.java62
1 files changed, 31 insertions, 31 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/impl/ocl/tracker/activeocl/ContextData.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/impl/ocl/tracker/activeocl/ContextData.java
index 2e8fe5239c8..2a14a33cfb3 100755
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/impl/ocl/tracker/activeocl/ContextData.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.tooling.runtime/src/org/eclipse/papyrus/infra/gmfdiag/tooling/runtime/impl/ocl/tracker/activeocl/ContextData.java
@@ -1,31 +1,31 @@
-package org.eclipse.papyrus.infra.gmfdiag.tooling.runtime.impl.ocl.tracker.activeocl;
-
-import java.util.HashSet;
-import java.util.Set;
-
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.EStructuralFeature;
-
-class ContextData {
-
- private final EObject myContext;
-
- private final Set<EStructuralFeature> myFeatures;
-
- public ContextData(EObject context) {
- myContext = context;
- myFeatures = new HashSet<EStructuralFeature>();
- }
-
- public void addFeature(EStructuralFeature feature) {
- myFeatures.add(feature);
- }
-
- public Set<EStructuralFeature> getFeatures() {
- return myFeatures;
- }
-
- public EObject getContext() {
- return myContext;
- }
-}
+package org.eclipse.papyrus.infra.gmfdiag.tooling.runtime.impl.ocl.tracker.activeocl;
+
+import java.util.HashSet;
+import java.util.Set;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.emf.ecore.EStructuralFeature;
+
+class ContextData {
+
+ private final EObject myContext;
+
+ private final Set<EStructuralFeature> myFeatures;
+
+ public ContextData(EObject context) {
+ myContext = context;
+ myFeatures = new HashSet<EStructuralFeature>();
+ }
+
+ public void addFeature(EStructuralFeature feature) {
+ myFeatures.add(feature);
+ }
+
+ public Set<EStructuralFeature> getFeatures() {
+ return myFeatures;
+ }
+
+ public EObject getContext() {
+ return myContext;
+ }
+}

Back to the top