Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.samples/src/testinheritance/validation/NameValuePairValidator.java')
-rwxr-xr-xtests/org.eclipse.emf.teneo.samples/src/testinheritance/validation/NameValuePairValidator.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/org.eclipse.emf.teneo.samples/src/testinheritance/validation/NameValuePairValidator.java b/tests/org.eclipse.emf.teneo.samples/src/testinheritance/validation/NameValuePairValidator.java
index a5f649b1e..5fa3daad4 100755
--- a/tests/org.eclipse.emf.teneo.samples/src/testinheritance/validation/NameValuePairValidator.java
+++ b/tests/org.eclipse.emf.teneo.samples/src/testinheritance/validation/NameValuePairValidator.java
@@ -6,16 +6,17 @@
*/
package testinheritance.validation;
-
/**
- * A sample validator interface for {@link testinheritance.NameValuePair}.
- * 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.
+ * A sample validator interface for {@link testinheritance.NameValuePair}. 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 NameValuePairValidator {
boolean validate();
boolean validateName(String value);
+
boolean validateValue(String value);
}

Back to the top