Searched defs:Insets (Results 1 - 2 of 2) sorted by relevance
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Insets.java | 29 * An <code>Insets</code> object is a representation of the borders 40 public class Insets implements Cloneable, java.io.Serializable { class in inherits:Cloneable,java.io.Serializable 96 * Creates and initializes a new <code>Insets</code> object with the 103 public Insets(int top, int left, int bottom, int right) { method in class:Insets 128 * of <code>Insets</code> are equal if the four integer values 136 if (obj instanceof Insets) { 137 Insets insets = (Insets)obj; 145 * Returns the hash code for this Insets. 147 * @return a hash code for this Insets [all...] |
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/ |
H A D | SynthModel.java | 142 return String.format("new PainterBorder(\"%s\", new Insets(%d, %d, %d, %d))", 153 class Insets { class 159 public Insets() { method in class:Insets 163 public Insets(int top, int left, int bottom, int right) { method in class:Insets 172 return String.format("new Insets%s(%d, %d, %d, %d)", 194 @XmlElement private Insets stretchingInsets = null; 195 public Insets getStretchingInsets() { return stretchingInsets; }
|
Completed in 429 milliseconds