01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id$
06: */package newprocess.validation;
07:
08: /**
09: * A sample validator interface for {@link newprocess.Process}.
10: * This doesn't really do anything, and it's not a real EMF artifact.
11: * It was generated by the org.eclipse.emf.examples.generator.validator plug-in to illustrate how EMF's code generator can be extended.
12: * This can be disabled with -vmargs -Dorg.eclipse.emf.examples.generator.validator=false.
13: *
14: * @author sh
15: */
16: public interface ProcessValidator {
17:
18: public boolean validateName(newprocess.Process proc);
19:
20: public boolean validateImplementation(newprocess.Process proc);
21:
22: public boolean validateSubject(newprocess.Process proc);
23:
24: public boolean validateNamespace(newprocess.Process proc);
25: }
|