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