01: package com.metaboss.sdlctools.models.metabossmodel.visualmodel;
02:
03: /**
04: * Line object instance interface.
05: */
06: public interface Line
07: extends
08: com.metaboss.sdlctools.models.metabossmodel.visualmodel.GraphicElement {
09: /**
10: * Returns the value of reference color.
11: * @return Value of reference color.
12: */
13: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Color getColor();
14:
15: /**
16: * Sets the value of reference color. See {@link #getColor} for description
17: * on the reference.
18: * @param newValue New value to be set.
19: */
20: public void setColor(
21: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Color newValue);
22:
23: /**
24: * Returns the value of reference startPoint.
25: * @return Value of reference startPoint.
26: */
27: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Point getStartPoint();
28:
29: /**
30: * Sets the value of reference startPoint. See {@link #getStartPoint} for
31: * description on the reference.
32: * @param newValue New value to be set.
33: */
34: public void setStartPoint(
35: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Point newValue);
36:
37: /**
38: * Returns the value of reference endPoint.
39: * @return Value of reference endPoint.
40: */
41: public com.metaboss.sdlctools.models.metabossmodel.visualmodel.Point getEndPoint();
42:
43: /**
44: * Sets the value of reference endPoint. See {@link #getEndPoint} for description
45: * on the reference.
46: * @param newValue New value to be set.
47: */
48: public void setEndPoint(
49: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Point newValue);
50: }
|