Searched defs:vgap (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DVerticalBagLayout.java39 int vgap; field in class:VerticalBagLayout
50 * @param vgap the vertical gap
52 public VerticalBagLayout(int vgap) { argument
53 this.vgap = vgap;
87 dim.height += d.height + vgap;
114 dim.height += d.height + vgap;
147 top += d.height + vgap;
156 return getClass().getName() + "[vgap=" + vgap
[all...]
H A DVariableGridLayout.java51 int vgap; field in class:VariableGridLayout
78 * @param vgap the vertical gap variable
81 public VariableGridLayout(int rows, int cols, int hgap, int vgap) { argument
82 super(rows, cols, hgap, vgap);
87 this.vgap = vgap;
192 h = (h - (nrows - 1) * vgap);
205 y += rowHeight + vgap;
224 return getClass().getName() + "[hgap=" + hgap + ",vgap=" + vgap
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DVariableGridLayout.java38 int hgap, int vgap,
40 super(rows, cols, hgap, vgap);
70 int vgap = getVgap();
109 y += h + vgap;
161 y += h + vgap;
203 int vgap = getVgap();
222 y += h + vgap;
37 VariableGridLayout(int rows, int cols, int hgap, int vgap, boolean fillRows, boolean fillColumns) argument
H A DAboutDialog.java192 TPanel(int hgap, int vgap) { argument
193 super(new BorderLayout(hgap, vgap));
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridLayout.java118 int vgap; field in class:GridLayout
188 * @param vgap the vertical gap
193 public GridLayout(int rows, int cols, int hgap, int vgap) { argument
200 this.vgap = vgap;
278 return vgap;
283 * @param vgap the vertical gap between components
286 public void setVgap(int vgap) { argument
287 this.vgap = vgap;
[all...]
H A DBorderLayout.java141 * The vertical gap is specified by <code>vgap</code>.
147 int vgap; field in class:BorderLayout
359 * and the vertical gap is specified by <code>vgap</code>.
361 * @param vgap the vertical gap.
363 public BorderLayout(int hgap, int vgap) { argument
365 this.vgap = vgap;
390 return vgap;
395 * @param vgap the vertical gap between components
398 public void setVgap(int vgap) { argument
[all...]
H A DCardLayout.java108 int vgap; field in class:CardLayout
114 * @serialField vgap int
121 new ObjectStreamField("vgap", Integer.TYPE),
139 * @param vgap the vertical gap.
141 public CardLayout(int hgap, int vgap) { argument
143 this.vgap = vgap;
175 return vgap;
180 * @param vgap the vertical gap between components.
185 public void setVgap(int vgap) { argument
[all...]
H A DFlowLayout.java186 int vgap; field in class:FlowLayout
231 * @param vgap the vertical gap between components
235 public FlowLayout(int align, int hgap, int vgap) { argument
237 this.vgap = vgap;
331 return vgap;
338 * @param vgap the vertical gap between components
344 public void setVgap(int vgap) { argument
345 this.vgap = vgap;
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java1428 int vgap; field in class:RenderClipTest.SmartGridLayout
1434 this.vgap = v;
1493 insets.top+insets.bottom + h+(nrows+1)*vgap);
1517 h = h - (nrows+1)*vgap;
1522 int y = insets.top + vgap;
1531 y += heights[r++] + vgap;

Completed in 308 milliseconds