Searched defs:setBounds (Results 1 - 25 of 50) sorted by relevance

12

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Layout/src/com/sun/hotspot/igv/layout/
H A DCluster.java37 public void setBounds(Rectangle r); method in interface:Cluster
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformComponent.java53 void setBounds(int x, int y, int w, int h); method in interface:PlatformComponent
H A DPlatformWindow.java65 * with setSize/setLocation/setBounds/reshape methods.
67 public void setBounds(int x, int y, int w, int h); method in interface:PlatformWindow
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DBlock.java71 public void setBounds(Rectangle r) { method in class:Block
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformComponent.java60 public void setBounds(final int x, final int y, final int w, final int h) { method in class:CPlatformComponent
H A DCPlatformView.java84 public void setBounds(int x, int y, int width, int height) { method in class:CPlatformView
H A DCPrinterDialogPeer.java71 public void setBounds(int x, int y, int width, int height) {} method in class:CPrinterDialogPeer
H A DCPlatformEmbeddedFrame.java80 public void setBounds(int x, int y, int w, int h) { method in class:CPlatformEmbeddedFrame
H A DCViewPlatformEmbeddedFrame.java95 public void setBounds(int x, int y, int w, int h) { method in class:CViewPlatformEmbeddedFrame
96 view.setBounds(x, y, w, h);
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleComponent.java245 public void setBounds(Rectangle r); method in interface:AccessibleComponent
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DGtkFileDialogPeer.java64 public native void setBounds(int x, int y, int width, int height, int op); method in class:GtkFileDialogPeer
H A DXScrollPanePeer.java115 public void setBounds(int x, int y, int w, int h, int op) { method in class:XScrollPanePeer
116 super.setBounds(x, y, w, h, op);
H A DXChoicePeer.java166 // 6399679. check if super.setBounds() actually changes the size of the
169 public void setBounds(int x, int y, int width, int height, int op) { method in class:XChoicePeer
174 super.setBounds(x, y, width, height, op);
H A DXEmbedChildProxyPeer.java88 public void setBounds(int x, int y, int width, int height, int op) { method in class:XEmbedChildProxyPeer
313 * DEPRECATED: Replaced by setBounds(int, int, int, int).
316 setBounds(x, y, width, height, SET_BOUNDS);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthSpinnerUI.java405 private void setBounds(Component c, int x, int y, int width, int height) { method in class:SynthSpinnerUI.SpinnerLayout
407 c.setBounds(x, y, width, height);
435 setBounds(editor, editorX, insets.top, editorWidth, availHeight);
436 setBounds(nextButton, buttonsX, insets.top, buttonsWidth, nextHeight);
437 setBounds(previousButton, buttonsX, previousY, buttonsWidth, previousHeight);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DComponentView.java117 c.setBounds(alloc.x, alloc.y, alloc.width, alloc.height);
408 public void setBounds(int x, int y, int w, int h) { method in class:ComponentView.Invalidator
409 super.setBounds(x, y, w, h);
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java308 * @see #setBounds(Rectangle)
309 * @see #setBounds(int, int, int, int)
330 * <code>setBounds</code> method of <code>Component</code>.
333 * @see java.awt.Component#setBounds(java.awt.Rectangle)
336 public void setBounds(Rectangle r) { method in class:Rectangle
337 setBounds(r.x, r.y, r.width, r.height);
347 * <code>setBounds</code> method of <code>Component</code>.
355 * @see java.awt.Component#setBounds(int, int, int, int)
358 public void setBounds(int x, int y, int width, int height) { method in class:Rectangle
433 * replaced by <code>setBounds(in
[all...]
H A DMenuComponent.java857 public void setBounds(Rectangle r) { method in class:MenuComponent.AccessibleAWTMenuComponent
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DJTreeTable.java143 * paint the renderers and editors and overriding setBounds() below
174 component.setBounds(cellRect);
276 public void setBounds(int x, int y, int w, int h) { method in class:JTreeTable.TreeTableCellRenderer
277 super.setBounds(x, 0, w, JTreeTable.this.getHeight());
480 public void setBounds(int x, int y, int w, int h) { method in class:JTreeTable.TreeTableTextField
482 super.setBounds(newX, y, w - (newX - x), h);
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java55 * Operation for {@link #setBounds(int, int, int, int, int)}, indicating
58 * @see #setBounds(int, int, int, int, int)
63 * Operation for {@link #setBounds(int, int, int, int, int)}, indicating
66 * @see #setBounds(int, int, int, int, int)
71 * Operation for {@link #setBounds(int, int, int, int, int)}, indicating
74 * @see #setBounds(int, int, int, int, int)
79 * Operation for {@link #setBounds(int, int, int, int, int)}, indicating
83 * @see #setBounds(int, int, int, int, int)
88 * Resets the setBounds() operation to DEFAULT_OPERATION. This is not
89 * passed into {@link #setBounds(in
206 void setBounds(int x, int y, int width, int height, int op); method in interface:ComponentPeer
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSpinnerUI.java900 private void setBounds(Component c, int x, int y, int width, int height) { method in class:BasicSpinnerUI.Handler
902 c.setBounds(x, y, width, height);
913 setBounds(editor, insets.left, insets.top, width - insets.left - insets.right,
952 setBounds(editor, editorX, insets.top, editorWidth, editorHeight);
953 setBounds(nextButton, buttonsX, nextY, buttonsWidth, nextHeight);
954 setBounds(previousButton, buttonsX, previousY, buttonsWidth, previousHeight);
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletPanel.java923 public void setBounds(int x, int y, int width, int height) { method in class:AppletPanel
924 super.setBounds(x, y, width, height);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DNullComponentPeer.java120 public void setBounds(int x, int y, int width, int height, int op) { method in class:NullComponentPeer
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaSpinnerUI.java583 private void setBounds(final Component c, final int x, final int y, final int width, final int height) { method in class:AquaSpinnerUI.SpinnerLayout
585 c.setBounds(x, y, width, height);
615 setBounds(editor, editorX, insets.top, editorWidth, availHeight);
616 setBounds(nextButton, buttonsX, insets.top, buttonsWidth, nextHeight);
617 setBounds(previousButton, buttonsX, previousY, buttonsWidth, previousHeight);
618 setBounds(painter, buttonsX, painterTop, buttonsWidth, painterD.height);
/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/
H A DStubPeerCrash.java89 public void setBounds(int x, int y, int width, int height, int op){}; method in class:StubComponentPeer
185 * DEPRECATED: Replaced by setBounds(int, int, int, int).

Completed in 101 milliseconds

12