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