public class MarginInfo
extends java.lang.Object
Constructor and Description |
---|
MarginInfo(boolean enabled)
Creates a MarginInfo object with all edges set to either enabled or disabled.
|
MarginInfo(boolean top,
boolean right,
boolean bottom,
boolean left)
Creates a MarginInfo object by having each edge specified in clockwise
order (analogous to CSS).
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
boolean |
hasAll()
Checks if this MarginInfo object has margins on all edges enabled.
|
boolean |
hasBottom()
Checks if this MarginInfo object has the bottom edge margin enabled.
|
int |
hashCode() |
boolean |
hasLeft()
Checks if this MarginInfo object has the left edge margin enabled.
|
boolean |
hasRight()
Checks if this MarginInfo object has the right edge margin enabled.
|
boolean |
hasTop()
Checks if this MarginInfo object has the top edge margin enabled.
|
void |
setMargins(boolean enabled)
Enables or disables margins on all edges simultaneously.
|
void |
setMargins(boolean top,
boolean right,
boolean bottom,
boolean left)
Sets margins on all edges individually.
|
java.lang.String |
toString() |
public MarginInfo(boolean enabled)
enabled
- the value to set for all edgespublic MarginInfo(boolean top, boolean right, boolean bottom, boolean left)
top
- enable or disable top marginright
- enable or disable right marginbottom
- enable or disable bottom marginleft
- enable or disable left marginpublic void setMargins(boolean enabled)
enabled
- if true, enables margins on all edges. If false, disables margins on all edges.public void setMargins(boolean top, boolean right, boolean bottom, boolean left)
top
- enable or disable top marginright
- enable or disable right marginbottom
- enable or disable bottom marginleft
- enable or disable left marginpublic boolean hasAll()
public boolean hasLeft()
public boolean hasRight()
public boolean hasTop()
public boolean hasBottom()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object