Package org.eclipse.rap.rwt.theme
Class BoxDimensions
java.lang.Object
org.eclipse.rap.rwt.theme.BoxDimensions
- All Implemented Interfaces:
Serializable
Represents a set of dimensions that apply to the four edges of a widget, e.g. padding or border
widths.
- Since:
- 3.0
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionBoxDimensions
(int top, int right, int bottom, int left) Creates an immutable instance of BoxDimensions. -
Method Summary
-
Field Details
-
top
public final int topthe value for the upper edge -
right
public final int rightthe value for the right edge -
bottom
public final int bottomthe value for the lower edge -
left
public final int leftthe value for the left edge
-
-
Constructor Details
-
BoxDimensions
public BoxDimensions(int top, int right, int bottom, int left) Creates an immutable instance of BoxDimensions. Values are specified in the same order as known from CSS box model, clock-wise, starting at the top.- Parameters:
top
- the value for the upper edgeright
- the value for the right edgebottom
- the value for the lower edgeleft
- the value for the left edge
-
-
Method Details