01: package com.metaboss.sdlctools.models.metabossmodel.visualmodel;
02:
03: /**
04: * Azimuth object instance interface.
05: */
06: public interface Azimuth
07: extends
08: com.metaboss.sdlctools.models.metabossmodel.visualmodel.GraphicElement {
09: /**
10: * Returns the value of attribute angle.
11: * @return Value of attribute angle.
12: */
13: public int getAngle();
14:
15: /**
16: * Sets the value of angle attribute. See {@link #getAngle} for description
17: * on the attribute.
18: * @param newValue New value to be set.
19: */
20: public void setAngle(int newValue);
21:
22: /**
23: * Returns the value of reference rectangleWithAzimuth.
24: * @return Value of reference rectangleWithAzimuth.
25: */
26: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Rectangle getRectangleWithAzimuth();
27:
28: /**
29: * Sets the value of reference rectangleWithAzimuth. See {@link #getRectangleWithAzimuth}
30: * for description on the reference.
31: * @param newValue New value to be set.
32: */
33: public void setRectangleWithAzimuth(
34: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Rectangle newValue);
35: }
|