01: package com.metaboss.sdlctools.models.metabossmodel.visualmodel;
02:
03: /**
04: * Rectangle object instance interface.
05: */
06: public interface Rectangle
07: extends
08: com.metaboss.sdlctools.models.metabossmodel.visualmodel.GraphicElement {
09: /**
10: * Returns the value of reference azimuth.
11: * @return Value of reference azimuth.
12: */
13: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Azimuth getAzimuth();
14:
15: /**
16: * Sets the value of reference azimuth. See {@link #getAzimuth} for description
17: * on the reference.
18: * @param newValue New value to be set.
19: */
20: public void setAzimuth(
21: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Azimuth newValue);
22:
23: /**
24: * Returns the value of reference borderColor.
25: * @return Value of reference borderColor.
26: */
27: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Color getBorderColor();
28:
29: /**
30: * Sets the value of reference borderColor. See {@link #getBorderColor} for
31: * description on the reference.
32: * @param newValue New value to be set.
33: */
34: public void setBorderColor(
35: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Color newValue);
36:
37: /**
38: * Returns the value of reference dimension.
39: * @return Value of reference dimension.
40: */
41: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Dimension getDimension();
42:
43: /**
44: * Sets the value of reference dimension. See {@link #getDimension} for description
45: * on the reference.
46: * @param newValue New value to be set.
47: */
48: public void setDimension(
49: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Dimension newValue);
50:
51: /**
52: * Returns the value of reference backgroundColor.
53: * @return Value of reference backgroundColor.
54: */
55: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Color getBackgroundColor();
56:
57: /**
58: * Sets the value of reference backgroundColor. See {@link #getBackgroundColor}
59: * for description on the reference.
60: * @param newValue New value to be set.
61: */
62: public void setBackgroundColor(
63: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Color newValue);
64:
65: /**
66: * Returns the value of reference anchorPoint.
67: * @return Value of reference anchorPoint.
68: */
69: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Point getAnchorPoint();
70:
71: /**
72: * Sets the value of reference anchorPoint. See {@link #getAnchorPoint} for
73: * description on the reference.
74: * @param newValue New value to be set.
75: */
76: public void setAnchorPoint(
77: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Point newValue);
78: }
|