Searched refs:GridLayout (Results 1 - 25 of 34) sorted by relevance

12

/openjdk7/jdk/test/java/awt/GridLayout/LayoutExtraGaps/
H A DLayoutExtraGaps.java27 @summary GridLayout does not centre its component properly
28 (summary was GridLayout does not fill its Container)
44 Panel yellowPanel = new Panel(new GridLayout(compCount, 1, 3, 3));
53 Panel bluePanel = new Panel(new GridLayout(1, compCount, 3, 3));
63 Panel blackPanel = new Panel(new GridLayout(compCount, 1, 3, 3));
73 Panel redPanel = new Panel(new GridLayout(1, compCount, 3, 3));
83 setLayout(new GridLayout(2, 2, 20, 20));
100 throw new RuntimeException("Test failed. GridLayout doesn't center component.");
/openjdk7/jdk/test/java/awt/Frame/ResizeAfterSetFont/
H A DResizeAfterSetFont.java49 panel.setLayout(new GridLayout(0, 1, 1, 1));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DFindPanel.java30 import java.awt.GridLayout;
55 setLayout(new GridLayout());
/openjdk7/jdk/src/share/demo/applets/CardTest/
H A DCardTest.java50 import java.awt.GridLayout;
102 add("three", create(new GridLayout(2, 2)));
105 add("six", create(new GridLayout(2, 2, 10, 10)));
/openjdk7/jdk/test/java/awt/TextArea/TextAreaCursorTest/
H A DHoveringAndDraggingTest.java41 import java.awt.GridLayout;
64 panel.setLayout( new GridLayout(3,3) );
/openjdk7/jdk/test/java/awt/TextArea/UsingWithMouse/
H A DSelectionAutoscrollTest.java44 import java.awt.GridLayout;
72 panel.setLayout( new GridLayout(3,3) );
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridLayout.java29 * The <code>GridLayout</code> class is a layout manager that
42 * setLayout(new GridLayout(3,2));
60 * <td><img SRC="doc-files/GridLayout-1.gif"
65 * <td ALIGN=CENTER><img SRC="doc-files/GridLayout-2.gif"
93 public class GridLayout implements LayoutManager, java.io.Serializable { class in inherits:LayoutManager,java.io.Serializable
149 public GridLayout() { method in class:GridLayout
165 public GridLayout(int rows, int cols) { method in class:GridLayout
182 * All <code>GridLayout</code> constructors defer to this one.
193 public GridLayout(int rows, int cols, int hgap, int vgap) { method in class:GridLayout
322 * @see java.awt.GridLayout#minimumLayoutSiz
[all...]
/openjdk7/jdk/test/java/awt/FileDialog/FileNameOverrideTest/
H A DFileNameOverrideTest.java28 this.setLayout(new GridLayout(1, 1));
/openjdk7/jdk/test/java/awt/FileDialog/SaveFileNameOverrideTest/
H A DSaveFileNameOverrideTest.java26 this.setLayout(new GridLayout(1, 1));
/openjdk7/jdk/test/java/awt/Focus/RemoveAfterRequest/
H A DRemoveAfterRequest.java51 frame.setLayout(new GridLayout(3, 1));
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXOperations.java30 import java.awt.GridLayout;
53 super(new GridLayout(1, 1));
90 outerPanelLeft = new JPanel(new GridLayout(operations.length, 1));
91 outerPanelRight = new JPanel(new GridLayout(operations.length, 1));
H A DXMBeanInfo.java31 import java.awt.GridLayout;
130 super(new GridLayout(2, 1));
/openjdk7/jdk/test/javax/swing/text/html/TableView/7030332/
H A Dbug7030332.java72 JPanel result = new JPanel(new GridLayout(HTML_SAMPLES.length + 1, 3, 10, 10));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DCodeViewerPanel.java74 bottomPanel.setLayout(new GridLayout(1, 1));
/openjdk7/jdk/test/java/awt/Focus/ChoiceFocus/
H A DChoiceFocus.java64 f.setLayout(new GridLayout());
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableExample.java55 import java.awt.GridLayout;
145 namePanel.setLayout(new GridLayout(0, 1));
152 fieldPanel.setLayout(new GridLayout(0, 1));
/openjdk7/jdk/test/java/awt/List/MouseDraggedOutCauseScrollingTest/
H A DMouseDraggedOutCauseScrollingTest.java43 this.setLayout (new GridLayout (1, 3));
/openjdk7/jdk/test/java/awt/PrintJob/PrintCheckboxTest/
H A DPrintCheckboxManualTest.java103 f.setLayout(new GridLayout(2, 2));
/openjdk7/jdk/test/java/awt/print/PaintSetEnabledDeadlock/
H A DPaintSetEnabledDeadlock.java68 setLayout(new GridLayout(1, 2));
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DOverviewTab.java115 private class AutoGridLayout extends GridLayout {
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworksPrefs.java47 import java.awt.GridLayout;
117 filters.setLayout(new GridLayout(1, 0));
/openjdk7/jdk/test/java/awt/print/PrinterJob/ValidatePage/
H A DValidatePage.java112 pfp.setLayout (new GridLayout (9, 1, 0, 0));
126 pp.setLayout (new GridLayout (8, 1, 0, 0));
139 epp.setLayout (new GridLayout (6, 2, 0, 0));
/openjdk7/jdk/src/share/classes/sun/awt/
H A DVariableGridLayout.java40 public class VariableGridLayout extends GridLayout {
/openjdk7/jdk/test/java/awt/FullScreen/MultimonFullscreenTest/
H A DMultimonFullscreenTest.java68 import java.awt.GridLayout;
132 p1.setLayout(new GridLayout(2,0));
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletProps.java49 p.setLayout(new GridLayout(0, 2));

Completed in 366 milliseconds

12