blob: 4ae6918765c9e445930832c6f46ac36bdb6b14fa [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: ParentTwoValidator.java,v 1.2 2007/03/29 22:13:50 mtaal Exp $
*/
package testinheritance.validation;
import testinheritance.SomeReference;
/**
* A sample validator interface for {@link testinheritance.ParentTwo}. 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 ParentTwoValidator {
boolean validate();
boolean validateTestId(long value);
boolean validateSomeReference(SomeReference value);
}