Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/units/FormalParameter.java')
-rw-r--r--extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/units/FormalParameter.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/units/FormalParameter.java b/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/units/FormalParameter.java
new file mode 100644
index 00000000000..c982a0d9e8e
--- /dev/null
+++ b/extraplugins/alf/org.eclipse.papyrus.alf/src/org/eclipse/papyrus/alf/syntax/units/FormalParameter.java
@@ -0,0 +1,24 @@
+package org.eclipse.papyrus.alf.syntax.units;
+
+public class FormalParameter extends TypedElementDefinition {
+
+ // Synthesized Properties
+ public String direction ;
+
+ // Helper Operations
+
+ /*
+ * Returns true if the annotation is for a stereotype that has a metaclass consistent with Parameter.
+ */
+ public boolean annotationAllowed(StereotypeAnnotation annotation) {
+ return false ;
+ }
+
+ /*
+ * Return true if the given member is a FormalParameter.
+ */
+ public boolean isSameKindAs(Member member) {
+ return false ;
+ }
+
+}

Back to the top