Searched refs:JComponent (Results 1 - 25 of 501) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/
H A DInputVerifier.java37 * <code>InputVerifier</code> and, using <code>JComponent</code>'s
39 * attach an instance of their subclass to the <code>JComponent</code> whose input they
80 * public boolean verify(JComponent input) {
101 * Checks whether the JComponent's input is valid. This method should
105 * @param input the JComponent to verify
107 * @see JComponent#setInputVerifier
108 * @see JComponent#getInputVerifier
112 public abstract boolean verify(JComponent input);
124 * @param input the JComponent to verify
126 * @see JComponent#setInputVerifie
[all...]
H A DDesktopManager.java88 void beginDraggingFrame(JComponent f);
94 void dragFrame(JComponent f, int newX, int newY);
98 void endDraggingFrame(JComponent f);
105 void beginResizingFrame(JComponent f, int direction);
110 void resizeFrame(JComponent f, int newX, int newY, int newWidth, int newHeight);
114 void endResizingFrame(JComponent f);
117 void setBoundsForFrame(JComponent f, int newX, int newY, int newWidth, int newHeight);
H A DDebugGraphicsInfo.java40 Hashtable<JComponent, Integer> componentToDebug;
44 void setDebugOptions(JComponent component, int debug) {
49 componentToDebug = new Hashtable<JComponent, Integer>();
58 int getDebugOptions(JComponent component) {
H A DJToolTip.java40 * For example, any Swing component can use the <code>JComponent</code>
44 * display can override <code>JComponent</code>'s <code>createToolTip</code>
65 * @see JComponent#setToolTipText
66 * @see JComponent#createToolTip
70 public class JToolTip extends JComponent implements Accessible {
78 JComponent component;
98 * @see JComponent#updateUI
109 * @see JComponent#getUIClassID
155 * @param c the <code>JComponent</code> being described
156 * @see JComponent#createToolTi
[all...]
H A DAutoscroller.java51 private static JComponent component;
59 public static void stop(JComponent c) {
66 public static boolean isRunning(JComponent c) {
85 private void start(JComponent c, MouseEvent e) {
116 private void _stop(JComponent c) {
131 private boolean _isRunning(JComponent c) {
139 JComponent component = (JComponent)e.getComponent();
160 JComponent component = Autoscroller.component;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DComponentUI.java28 import javax.swing.JComponent;
44 * The <code>JComponent</code> class
50 * @see javax.swing.JComponent
84 * @see javax.swing.JComponent#setUI
85 * @see javax.swing.JComponent#updateUI
87 public void installUI(JComponent c) {
96 * leave the <code>JComponent</code> instance in a clean state (no
113 * @see javax.swing.JComponent#updateUI
115 public void uninstallUI(JComponent c) {
133 public void paint(Graphics g, JComponent
[all...]
H A DComponentInputMapUIResource.java29 import javax.swing.JComponent;
40 public ComponentInputMapUIResource(JComponent component) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthStyleFactory.java27 import javax.swing.JComponent;
39 * public SynthStyle getStyle(JComponent c, Region id) {
74 public abstract SynthStyle getStyle(JComponent c, Region id);
H A DSynthUI.java28 import javax.swing.JComponent;
44 public SynthContext getContext(JComponent c);
H A DSynthViewportUI.java50 public static ComponentUI createUI(JComponent c) {
58 public void installUI(JComponent c) {
68 public void uninstallUI(JComponent c) {
79 protected void installDefaults(JComponent c) {
83 private void updateStyle(JComponent c) {
110 protected void installListeners(JComponent c) {
119 protected void uninstallListeners(JComponent c) {
128 protected void uninstallDefaults(JComponent c) {
139 public SynthContext getContext(JComponent c) {
143 private SynthContext getContext(JComponent
[all...]
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DUISwitchListener.java44 import javax.swing.JComponent;
56 JComponent componentToSwitch;
58 public UISwitchListener(JComponent c) {
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorChooserComponentFactory.java28 import javax.swing.JComponent;
60 public static JComponent getPreviewPanel() {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DStateImpl.template36 @Override protected boolean isInState(JComponent c) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonToggleUI.java28 import javax.swing.JComponent;
36 public static ComponentUI createUI(final JComponent b) {
H A DAquaToolTipUI.java30 import javax.swing.JComponent;
39 public static ComponentUI createUI(final JComponent c) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicViewportUI.java46 public static ComponentUI createUI(JComponent c) {
53 public void installUI(JComponent c) {
58 public void uninstallUI(JComponent c) {
63 protected void installDefaults(JComponent c) {
71 protected void uninstallDefaults(JComponent c) {
H A DBasicFormattedTextFieldUI.java43 public static ComponentUI createUI(JComponent c) {
H A DBasicSeparatorUI.java51 public static ComponentUI createUI( JComponent c )
56 public void installUI( JComponent c )
62 public void uninstallUI(JComponent c)
86 public void paint( Graphics g, JComponent c )
108 public Dimension getPreferredSize( JComponent c )
116 public Dimension getMinimumSize( JComponent c ) { return null; }
117 public Dimension getMaximumSize( JComponent c ) { return null; }
H A DBasicPanelUI.java46 public static ComponentUI createUI(JComponent c) {
53 public void installUI(JComponent c) {
59 public void uninstallUI(JComponent c) {
84 * @see javax.swing.JComponent#getBaseline(int, int)
87 public int getBaseline(JComponent c, int width, int height) {
101 * @see javax.swing.JComponent#getBaseline(int, int)
105 JComponent c) {
H A DBasicRootPaneUI.java51 public static ComponentUI createUI(JComponent c) {
55 public void installUI(JComponent c) {
63 public void uninstallUI(JComponent c) {
82 InputMap km = getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW, root);
84 JComponent.WHEN_IN_FOCUSED_WINDOW, km);
85 km = getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT,
88 JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, km);
106 SwingUtilities.replaceUIInputMap(root, JComponent.
111 InputMap getInputMap(int condition, JComponent c) {
112 if (condition == JComponent
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DAncestorEvent.java67 * @param source the JComponent that originated the event
75 public AncestorEvent(JComponent source, int id, Container ancestor, Container ancestorParent) {
100 public JComponent getComponent() {
101 return (JComponent)getSource();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DEditorFactory.java27 import javax.swing.JComponent;
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/event/
H A DGestureUtilities.java33 * This class manages the relationship between {@link JComponent}s and the {@link GestureListener}s
53 * Attaches a {@link GestureListener} to the specified {@link JComponent}.
57 public static void addGestureListenerTo(final JComponent component, final GestureListener listener) {
63 * Removes a {@link GestureListener} from the specified {@link JComponent}
67 public static void removeGestureListenerFrom(final JComponent component, final GestureListener listener) {
/openjdk7/jdk/test/javax/swing/JLayer/6994419/
H A Dbug6994419.java40 JLayer<JComponent> l = new JLayer<JComponent>(new JButton());
/openjdk7/jdk/test/javax/swing/border/
H A DTest6461042.java28 * when a JComponent is its own border
35 import javax.swing.JComponent;
38 public class Test6461042 extends JComponent implements Border {

Completed in 76 milliseconds

1234567891011>>