Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/validation/ServiceValidator.java')
-rw-r--r--extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/validation/ServiceValidator.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/validation/ServiceValidator.java b/extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/validation/ServiceValidator.java
new file mode 100644
index 00000000000..64d4d5e6bd2
--- /dev/null
+++ b/extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/validation/ServiceValidator.java
@@ -0,0 +1,19 @@
+/**
+ *
+ * $Id$
+ */
+package SoaML.validation;
+
+import org.eclipse.uml2.uml.Port;
+
+/**
+ * A sample validator interface for {@link SoaML.Service}.
+ * This doesn't really do anything, and it's not a real EMF artifact.
+ * It was generated by the org.eclipse.emf.examples.generator.validator plug-in to illustrate how EMF's code generator can be extended.
+ * This can be disabled with -vmargs -Dorg.eclipse.emf.examples.generator.validator=false.
+ */
+public interface ServiceValidator {
+ boolean validate();
+
+ boolean validateBase_Port(Port value);
+}

Back to the top