01: package com.metaboss.sdlctools.models.metabossmodel;
02:
03: /**
04: * ModelElementConstraint class proxy interface.
05: */
06: public interface ModelElementConstraintClass extends
07: javax.jmi.reflect.RefClass {
08: /**
09: * The default factory operation used to create an instance object.
10: * @return The created instance object.
11: */
12: public ModelElementConstraint createModelElementConstraint();
13:
14: /**
15: * Creates an instance object having attributes initialized by the passed
16: * values.
17: * @param Name
18: * @param Description
19: * @param OwnerIdentifier Optional identifier of the party who is responsible
20: * for the creation,deletion and validity of this model element. At the moment
21: * used to resolve conflicts between automatic model assistants. At the
22: * moment always empty for the objects created by humans.
23: * @param OclExpression
24: * @param DefaultErrorText
25: * @return The created instance object.
26: */
27: public ModelElementConstraint createModelElementConstraint(
28: java.lang.String name, java.lang.String description,
29: java.lang.String ownerIdentifier,
30: java.lang.String oclExpression,
31: java.lang.String defaultErrorText);
32:
33: /**
34: * @param pRef
35: * @return
36: */
37: public com.metaboss.sdlctools.models.metabossmodel.ModelElement getByRef(
38: java.lang.String pRef);
39:
40: /**
41: * @param pRef
42: * @return
43: */
44: public com.metaboss.sdlctools.models.metabossmodel.ModelElement findByRef(
45: java.lang.String pRef);
46: }
|