|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kalmeo.kuix.util.Insets
public class Insets
An Insets
object is a representation of the borders of a
container. It specifies the space that a container must leave at each of its
edges. The space can be a margin, a border or a padding.
Field Summary | |
---|---|
int |
bottom
|
int |
left
|
int |
right
|
int |
top
|
Constructor Summary | |
---|---|
Insets()
Creates and initializes a new Insets object with null
values |
|
Insets(int top,
int right,
int bottom,
int left)
Creates and initializes a new Insets object with the
specified top, left, bottom, and right insets. |
Method Summary |
---|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public int top
public int left
public int bottom
public int right
Constructor Detail |
---|
public Insets()
Insets
object with null
values
public Insets(int top, int right, int bottom, int left)
Insets
object with the
specified top, left, bottom, and right insets.
top
- the inset from the top.right
- the inset from the right.bottom
- the inset from the bottom.left
- the inset from the left.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |