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