Packages This Package Prev Next Index
public class java.awt.Insets extends java.lang.Object (I-§1.12) implements java.lang.Cloneable (I-§1.22) { // Fields public int bottom; §1.25.1 public int left; §1.25.2 public int right; §1.25.3 public int top; §1.25.4 // Constructors public Insets(int top, int left, int bottom, int right); §1.25.5 // Methods public Object clone(); §1.25.6 public String toString(); §1.25.7 }The 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 either be a border, blank space, or a title.
public int bottom
public int left
public int right
public int top
public Insets(int top, int left, int bottom, int right)
top
-
the inset from the top
left
-
the inset from the left
bottom
-
the inset from the bottom
right
-
the inset from the right
public Object clone()
public String toString()
Packages This Package Prev Next IndexJava API Document (HTML generated by dkramer on April 22, 1996)