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