Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/com/example/car/validation/CarsListValidator.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/com/example/car/validation/CarsListValidator.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/com/example/car/validation/CarsListValidator.java b/examples/org.eclipse.emf.teneo.samples/src/com/example/car/validation/CarsListValidator.java
deleted file mode 100644
index fd6dd4b83..000000000
--- a/examples/org.eclipse.emf.teneo.samples/src/com/example/car/validation/CarsListValidator.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: CarsListValidator.java,v 1.1 2007/08/10 20:17:32 mtaal Exp $
- */
-package com.example.car.validation;
-
-import com.example.car.CarLink;
-import com.example.car.CarType;
-
-import org.eclipse.emf.common.util.EList;
-
-/**
- * A sample validator interface for {@link com.example.car.CarsList}.
- * 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 CarsListValidator {
- boolean validate();
-
- boolean validateCarType(EList<CarType> value);
- boolean validateCarLink(EList<CarLink> value);
-}

Back to the top