Lines Matching refs:bottom
63 * The inset from the bottom.
70 public int bottom;
97 * specified top, left, bottom, and right insets.
100 * @param bottom the inset from the bottom.
103 public Insets(int top, int left, int bottom, int right) {
106 this.bottom = bottom;
111 * Set top, left, bottom, and right to the specified values
115 * @param bottom the inset from the bottom.
119 public void set(int top, int left, int bottom, int right) {
122 this.bottom = bottom;
130 * <code>bottom</code>, and <code>right</code> are all equal.
139 (bottom == insets.bottom) && (right == insets.right));
150 int sum1 = left + bottom;
168 return getClass().getName() + "[top=" + top + ",left=" + left + ",bottom=" + bottom + ",right=" + right + "]";