Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.rmf.rif11.model/src/org/eclipse/rmf/rif11/ExchangeFile/validation/RelationGroupValidator.java')
-rw-r--r--org.eclipse.rmf.rif11.model/src/org/eclipse/rmf/rif11/ExchangeFile/validation/RelationGroupValidator.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/org.eclipse.rmf.rif11.model/src/org/eclipse/rmf/rif11/ExchangeFile/validation/RelationGroupValidator.java b/org.eclipse.rmf.rif11.model/src/org/eclipse/rmf/rif11/ExchangeFile/validation/RelationGroupValidator.java
deleted file mode 100644
index fa0add4b..00000000
--- a/org.eclipse.rmf.rif11.model/src/org/eclipse/rmf/rif11/ExchangeFile/validation/RelationGroupValidator.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011, 2012 itemis GmbH.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Nirmal Sasidharan - initial API and implementation
- ******************************************************************************/
-
-package org.eclipse.rmf.rif11.ExchangeFile.validation;
-
-import org.eclipse.emf.common.util.EList;
-import org.eclipse.rmf.rif11.ExchangeFile.SpecGroup;
-import org.eclipse.rmf.rif11.ExchangeFile.SpecRelation;
-import org.eclipse.rmf.rif11.ExchangeFile.SpecType;
-
-
-/**
- * A sample validator interface for {@link org.eclipse.rmf.rif11.ExchangeFile.RelationGroup}.
- * 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 RelationGroupValidator {
- boolean validate();
-
- boolean validateSpecRelations(EList<SpecRelation> value);
- boolean validateRelationType(SpecType value);
- boolean validateSourceGroup(SpecGroup value);
-}

Back to the top