Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/library/validation/LibraryValidator.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/library/validation/LibraryValidator.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/library/validation/LibraryValidator.java b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/library/validation/LibraryValidator.java
deleted file mode 100644
index 563648e33..000000000
--- a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/emf/sample/library/validation/LibraryValidator.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: LibraryValidator.java,v 1.1 2007/07/09 12:55:20 mtaal Exp $
- */
-package org.eclipse.emf.teneo.samples.emf.sample.library.validation;
-
-import org.eclipse.emf.common.util.EList;
-
-import org.eclipse.emf.teneo.samples.emf.sample.library.Book;
-import org.eclipse.emf.teneo.samples.emf.sample.library.Writer;
-
-/**
- * A sample validator interface for {@link org.eclipse.emf.teneo.samples.emf.sample.library.Library}.
- * 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 LibraryValidator {
- boolean validate();
-
- boolean validateName(String value);
- boolean validateWriters(EList<Writer> value);
- boolean validateBooks(EList<Book> value);
-}

Back to the top