blob: 42405daa10d677a16fcccb3d115c137b517e688e [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: ChildValidator.java,v 1.1 2007/03/21 15:45:37 mtaal Exp $
*/
package testinheritance.validation;
/**
* A sample validator interface for {@link testinheritance.Child}. 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 ChildValidator {
boolean validate();
boolean validateAge(long value);
}