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