Searched refs:Box (Results 1 - 25 of 47) sorted by relevance

12

/openjdk7/langtools/test/tools/javac/generics/wildcards/
H A DT6450290.java33 static class Box<X extends Box<?,?>, T extends X> { class in class:T6450290
35 Box<X, T> same;
38 static class A extends Box<A,A> {}
39 static class B extends Box<B,B> {}
41 Box<?,?> b = new Box<Box<A,A>,Box<A,A>>();
42 b.value.same = new Box<
[all...]
/openjdk7/langtools/test/tools/javac/generics/
H A DUncheckedCovariance.java35 static class Box<T> { } class in class:UncheckedCovariance
37 Box<Integer> f() { return null; }
40 Box f() { return null; }
H A DGenericMerge.java33 class Box<T> {} class
36 <T> Box<T> box(T t);
39 <T> Box<T> box(T t);
/openjdk7/langtools/test/tools/javac/generics/wildcards/pos/
H A DBoundsCollision.java35 static class Box<T extends Number> { class in class:StreinBug
36 void f(Box<T> bt) { }
40 Box<? super Number> b0 = null;
41 Box<Number> b1 = b0;
H A DRvalConversion.java40 class Box<T> { class
45 Box<? extends Integer> bi = null;
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djavax_swing_Box.java27 * @summary Tests Box value encoding
31 import javax.swing.Box;
34 public final class javax_swing_Box extends AbstractTest<Box> {
39 protected Box getObject() {
40 return new Box(BoxLayout.LINE_AXIS);
43 protected Box getAnotherObject() {
44 return Box.createHorizontalBox();
H A DTest4903007.java31 import javax.swing.Box;
43 Box vBox = Box.createVerticalBox();
45 vBox.add(Box.createVerticalStrut(10));
47 vBox.add(Box.createVerticalGlue());
49 vBox.add(Box.createVerticalStrut(10));
52 Box hBox = Box.createHorizontalBox();
54 hBox.add(Box.createHorizontalStrut(10));
56 hBox.add(Box
[all...]
H A Djavax_swing_Box_Filler.java32 import javax.swing.Box.Filler;
/openjdk7/jdk/test/java/beans/XMLEncoder/6777487/
H A DTestBox.java32 import javax.swing.Box;
40 new Box(BoxLayout.LINE_AXIS),
41 new Box(BoxLayout.PAGE_AXIS) {
/openjdk7/langtools/test/tools/javac/foreach/
H A DListOfListTest.java60 static class Box<T> { class in class:ListOfListTest
61 Box(T t) { this.t = t; } method in class:ListOfListTest.Box
67 Box<E> box = new Box<E>(E.c);
73 Box<Integer> boxi = new Box<Integer>(12);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DBox.java39 * Box provides several class methods
41 * even non-Box containers.
44 * The <code>Box</code> class can create several kinds
48 * If all the components your <code>Box</code> contains
79 public class Box extends JComponent implements Accessible { class in inherits:JComponent,Accessible
82 * Creates a <code>Box</code> that displays its components
93 public Box(int axis) { method in class:Box
99 * Creates a <code>Box</code> that displays its components
100 * from left to right. If you want a <code>Box</code> that
102 * <code>Box</cod
[all...]
/openjdk7/jdk/src/share/demo/jfc/FileChooserDemo/
H A DFileChooserDemo.java59 import javax.swing.Box;
307 control1.add(Box.createRigidArea(vpad20));
309 control1.add(Box.createRigidArea(vpad7));
311 control1.add(Box.createRigidArea(vpad7));
313 control1.add(Box.createRigidArea(vpad4));
317 fieldWrapper.add(Box.createRigidArea(hpad10));
318 fieldWrapper.add(Box.createRigidArea(hpad10));
321 control1.add(Box.createRigidArea(vpad20));
322 control1.add(Box.createGlue());
330 control2.add(Box
[all...]
/openjdk7/langtools/test/tools/javac/generics/inference/6215213/
H A DT6215213.java33 static class Box<T> {} class in class:T6215213
42 <T> Box<T> testBox(T t) { return null; }
52 Box<?> box = testBox(null);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DCommandProcessorPanel.java130 Box hbox = Box.createHorizontalBox();
131 hbox.add(Box.createGlue());
139 hbox.add(Box.createGlue());
H A DDebuggerConsolePanel.java118 Box hbox = Box.createHorizontalBox();
119 hbox.add(Box.createGlue());
127 hbox.add(Box.createGlue());
H A DFindPanel.java50 Box hbox = Box.createHorizontalBox();
H A DInspector.java67 Box hbox = Box.createHorizontalBox();
88 Box hboxDown = Box.createHorizontalBox();
89 hboxDown.add(Box.createGlue());
107 hboxDown.add(Box.createGlue());
111 hboxDown.add(Box.createGlue());
H A DObjectListPanel.java82 Box box = Box.createHorizontalBox();
83 box.add(Box.createGlue());
92 box.add(Box.createHorizontalStrut(20));
114 box.add(Box.createGlue());
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMenuBorder.java92 if (firstChild instanceof Box.Filler) return getEmptyInsets();
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DScriptShellPanel.java150 Box hbox = Box.createHorizontalBox();
151 hbox.add(Box.createGlue());
160 hbox.add(Box.createGlue());
/openjdk7/jdk/src/share/classes/com/sun/security/auth/callback/
H A DDialogCallbackHandler.java42 import javax.swing.Box;
145 Box namePanel = Box.createHorizontalBox();
168 Box passwordPanel = Box.createHorizontalBox();
/openjdk7/jdk/test/java/awt/Mixing/
H A DLWPopupMenu.java88 Box box = Box.createVerticalBox();
89 box.add(Box.createVerticalStrut(20));
91 box.add(Box.createVerticalStrut(20));
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMaximizableInternalFrame.java103 menuBar.add(Box.createGlue());
109 menuBar.add(Box.createHorizontalStrut(3), 0);
111 menuBar.add(Box.createHorizontalStrut(3), 2);
127 } else if (c instanceof Box.Filler) {
/openjdk7/jdk/test/javax/swing/JTree/4314199/
H A Dbug4314199.java68 mb.add(Box.createHorizontalStrut(27));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHSDB.java446 Box vbox = Box.createVerticalBox();
464 Box hbox = Box.createHorizontalBox();
465 hbox.add(Box.createGlue());
469 hbox.add(Box.createHorizontalStrut(20));
479 hbox.add(Box.createGlue());
505 Box hbox = Box.createHorizontalBox();
506 Box vbo
[all...]

Completed in 145 milliseconds

12