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/JoinTableValidator.java')
-rwxr-xr-xcore/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/JoinTableValidator.java13
1 files changed, 9 insertions, 4 deletions
diff --git a/core/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/JoinTableValidator.java b/core/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/JoinTableValidator.java
index c4537cf79..5fa7010c2 100755
--- a/core/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/JoinTableValidator.java
+++ b/core/org.eclipse.emf.teneo.annotations/src/org/eclipse/emf/teneo/annotations/pannotation/validation/JoinTableValidator.java
@@ -7,23 +7,28 @@
package org.eclipse.emf.teneo.annotations.pannotation.validation;
import org.eclipse.emf.common.util.EList;
-
import org.eclipse.emf.teneo.annotations.pannotation.JoinColumn;
import org.eclipse.emf.teneo.annotations.pannotation.UniqueConstraint;
/**
* A sample validator interface for {@link org.eclipse.emf.teneo.annotations.pannotation.JoinTable}.
- * 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.
+ * 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 JoinTableValidator {
boolean validate();
boolean validateName(String value);
+
boolean validateCatalog(String value);
+
boolean validateSchema(String value);
+
boolean validateJoinColumns(EList<JoinColumn> value);
+
boolean validateInverseJoinColumns(EList<JoinColumn> value);
+
boolean validateUniqueConstraints(EList<UniqueConstraint> value);
}

Back to the top