Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/EmbeddedIdValidator.java')
-rwxr-xr-xcore/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/EmbeddedIdValidator.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/EmbeddedIdValidator.java b/core/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/EmbeddedIdValidator.java
new file mode 100755
index 000000000..7e3b35986
--- /dev/null
+++ b/core/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/EmbeddedIdValidator.java
@@ -0,0 +1,19 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id: EmbeddedIdValidator.java,v 1.1 2007/02/08 23:12:34 mtaal Exp $
+ */
+package org.eclipse.emf.teneo.annotations.pannotation.validation;
+
+
+/**
+ * A sample validator interface for {@link org.eclipse.emf.teneo.annotations.pannotation.EmbeddedId}.
+ * 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 EmbeddedIdValidator {
+ boolean validate();
+
+}

Back to the top