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