01: package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemusagemodel;
02:
03: /**
04: * Actor object instance interface.
05: */
06: public interface Actor extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of attribute isAbstract.
10: * @return Value of attribute isAbstract.
11: */
12: public boolean isAbstract();
13:
14: /**
15: * Sets the value of isAbstract attribute. See {@link #isAbstract} for description
16: * on the attribute.
17: * @param newValue New value to be set.
18: */
19: public void setAbstract(boolean newValue);
20:
21: /**
22: * Returns the value of reference namespace.
23: * @return Value of reference namespace.
24: */
25: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemusagemodel.AbstractNamespace getNamespace();
26:
27: /**
28: * Sets the value of reference namespace. See {@link #getNamespace} for description
29: * on the reference.
30: * @param newValue New value to be set.
31: */
32: public void setNamespace(
33: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemusagemodel.AbstractNamespace newValue);
34:
35: /**
36: * Returns the value of reference supertype.
37: * @return Value of reference supertype.
38: */
39: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemusagemodel.Actor getSupertype();
40:
41: /**
42: * Sets the value of reference supertype. See {@link #getSupertype} for description
43: * on the reference.
44: * @param newValue New value to be set.
45: */
46: public void setSupertype(
47: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemusagemodel.Actor newValue);
48:
49: /**
50: * Returns the value of reference subtypes.
51: * @return Value of reference subtypes.
52: */
53: public java.util.Collection getSubtypes();
54:
55: /**
56: * Returns the value of reference useCases.
57: * @return Value of reference useCases.
58: */
59: public java.util.Collection getUseCases();
60: }
|