Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/validation/JavaExtensionStatementValidator.java')
-rw-r--r--plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/validation/JavaExtensionStatementValidator.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/validation/JavaExtensionStatementValidator.java b/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/validation/JavaExtensionStatementValidator.java
deleted file mode 100644
index 0ce4cc73..00000000
--- a/plugins/org.eclipse.xpand3/emf-gen/org/eclipse/xpand3/declaration/validation/JavaExtensionStatementValidator.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: JavaExtensionStatementValidator.java,v 1.3 2008/03/07 11:10:49 jkohnlein Exp $
- */
-package org.eclipse.xpand3.declaration.validation;
-
-import org.eclipse.emf.common.util.EList;
-
-import org.eclipse.xpand3.Identifier;
-
-/**
- * A sample validator interface for {@link org.eclipse.xpand3.declaration.JavaExtensionStatement}.
- * 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 JavaExtensionStatementValidator {
- boolean validate();
-
- boolean validateJavaType(Identifier value);
- boolean validateJavaMethod(Identifier value);
- boolean validateJavaParamTypes(EList<Identifier> value);
-}

Back to the top