Searched defs:component (Results 76 - 100 of 124) sorted by relevance

12345

/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java66 icon.paintIcon(mg.component, mg, 0, 0);
88 private final Component component = new Component() {}; field in class:Test6657026.MyGraphics
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java401 * Sets the document handler on the last component in the pipeline
1084 protected void addComponent(XMLComponent component) { argument
1086 // don't add a component more than once
1087 if (fComponents.contains(component)) {
1090 fComponents.add(component);
1092 // register component's recognized features
1093 String[] recognizedFeatures = component.getRecognizedFeatures();
1096 // register component's recognized properties
1097 String[] recognizedProperties = component.getRecognizedProperties();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DXML11NonValidatingConfiguration.java198 /** Last component in the document pipeline */
466 * Sets the document handler on the last component in the pipeline
727 // forward to every XML 1.0 component
740 // forward to every XML 1.1 component
765 // forward to every XML 1.0 component
777 // forward it to every XML 1.1 component
830 // reset every component
1018 // special performance feature: only component manager is allowed to set it.
1103 * Adds a component to the parser configuration. This method will
1104 * also add all of the component'
1109 addComponent(XMLComponent component) argument
1127 addCommonComponent(XMLComponent component) argument
1145 addXML11Component(XMLComponent component) argument
1165 addRecognizedParamsAndSetDefaults(XMLComponent component) argument
[all...]
H A DXML11Configuration.java321 /** Last component in the document pipeline */
655 * Sets the document handler on the last component in the pipeline
917 // forward to every XML 1.0 component
930 // forward to every XML 1.1 component
978 // forward to every XML 1.0 component
990 // forward it to every XML 1.1 component
1043 // reset every component
1129 // add schema component
1223 // add schema component
1344 // special performance feature: only component manage
1444 addComponent(XMLComponent component) argument
1462 addCommonComponent(XMLComponent component) argument
1480 addXML11Component(XMLComponent component) argument
1500 addRecognizedParamsAndSetDefaults(XMLComponent component) argument
[all...]
H A DXML11DTDConfiguration.java241 /** Last component in the document pipeline */
540 * Sets the document handler on the last component in the pipeline
801 // forward to every XML 1.0 component
814 // forward to every XML 1.1 component
839 // forward to every XML 1.0 component
851 // forward it to every XML 1.1 component
903 // reset every component
1128 // special performance feature: only component manager is allowed to set it.
1204 * Adds a component to the parser configuration. This method will
1205 * also add all of the component'
1210 addComponent(XMLComponent component) argument
1228 addCommonComponent(XMLComponent component) argument
1246 addXML11Component(XMLComponent component) argument
1266 addRecognizedParamsAndSetDefaults(XMLComponent component) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSplitPane.java79 * the default, indicates the right/bottom component gets all the space,
80 * where as a value of 1 indicates the left/top component gets all the space.
204 * The left or top component.
209 * The right or bottom component.
362 * Sets the L&F object that renders this component.
384 * @return the <code>SplitPaneUI</code> object that renders this component
387 * description: The L&F object that renders this component.
408 * Returns the name of the L&F class that renders this component.
452 * Sets the component to the left (or above) the divider.
469 * Returns the component t
885 remove(Component component) argument
[all...]
H A DSpringLayout.java47 * between two component edges.
52 * the allowable width of a component
55 * edges of the component.
56 * The allowable <em>y</em> coordinates for a component
58 * the north (top) edge of the component
70 * that make their associated component
72 * returned by the component's
83 * a component's constraints in several ways.
94 * Or you can get the spring for a particular edge of a component
99 * with a component b
999 addLayoutComponent(Component component, Object constraints) argument
1122 putConstraints(Component component, Constraints constraints) argument
[all...]
H A DDebugGraphics.java40 * RepaintManager repaintManager = RepaintManager.currentManager(component);
83 * context that slows down drawing for the specified component.
86 * @param component the JComponent to draw slowly
88 public DebugGraphics(Graphics graphics, JComponent component) { argument
90 setDebugOptions(component.shouldDebugGraphics());
1366 * options on a per component basis.
1368 static void setDebugOptions(JComponent component, int options) { argument
1369 info().setDebugOptions(component, options);
1374 static int getDebugOptions(JComponent component) { argument
1379 return debugGraphicsInfo.getDebugOptions(component);
1387 shouldComponentDebug(JComponent component) argument
[all...]
H A DJInternalFrame.java251 private static void updateLastFocusOwner(Component component) { argument
252 if (component != null) {
253 Component parent = component;
257 ((JInternalFrame)parent).setLastFocusOwner(component);
366 * Returns the look-and-feel object that renders this component.
369 * this component
429 * class that renders this component.
487 * @param comp the component to be enhanced
508 * Removes the specified component from the container. If
512 * @param comp the component t
1477 setLastFocusOwner(Component component) argument
[all...]
H A DJPopupMenu.java198 * Returns the look and feel (L&F) object that renders this component.
200 * @return the <code>PopupMenuUI</code> object that renders this component
207 * Sets the L&F object that renders this component.
232 * Returns the name of the L&F class that renders this component.
459 * Removes the component at the specified index from this popup menu.
572 * Inserts the specified component into the menu at a given
575 * @param component the <code>Component</code> to insert
577 * to insert the component, where 0 is the first
580 public void insert(Component component, int index) { argument
598 add(component);
[all...]
H A DRepaintManager.java52 * requests into a single repaint for members of a component tree.
152 // example, if we paint a component and show it and the buffer has
236 // Note: DisplayChangedRunnable passes in null as the component, so if
237 // component is ever used to determine the current
317 * Mark the component as in need of layout and queue a runnable
362 * Remove a component from the list of invalid components.
366 public synchronized void removeInvalidComponent(JComponent component) { argument
367 RepaintManager delegate = getDelegate(component);
369 delegate.removeInvalidComponent(component);
373 int index = invalidComponents.indexOf(component);
[all...]
H A DSwingUtilities.java89 * Installs a {@code DropTarget} on the component as necessary for a
116 * Return the rectangle (0,0,bounds.width,bounds.height) for the component <code>aComponent</code>
165 * root component coordinate system.
167 * root component coordinate system.
179 throw new Error("Source component not connected to component tree hierarchy");
186 throw new Error("Destination component not connected to component tree hierarchy");
196 * root component coordinate system.
198 * root component coordinat
1678 replaceUIInputMap(JComponent component, int type, InputMap uiInputMap) argument
1700 replaceUIActionMap(JComponent component, ActionMap uiActionMap) argument
1723 getUIInputMap(JComponent component, int condition) argument
1742 getUIActionMap(JComponent component) argument
2001 getUnwrappedParent(Component component) argument
[all...]
H A DTransferHandler.java60 * to represent a drag from a component, and a drop to a component.
67 * the <code>transferHandler</code> property on a Swing component.
70 * a component property simply by specifying the name of the property in
72 * one component to another either via the clipboard or a drag and drop operation
158 * current location within the component.
172 * current location within the component.
215 private Component component; field in class:TransferHandler.TransferSupport
233 * <code>true</code> for the given component, event, and index.
235 * @param component th
238 TransferSupport(Component component, DropTargetEvent event) argument
255 TransferSupport(Component component, Transferable transferable) argument
275 setDNDVariables(Component component, DropTargetEvent event) argument
1194 JComponent component; field in class:TransferHandler.PropertyTransferable
1310 private Component component; field in class:TransferHandler.DropHandler
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalLookAndFeel.java1601 public void provideErrorFeedback(Component component) { argument
1602 super.provideErrorFeedback(component);
1689 * @param component JComponent that will display the Icon, may be null
1695 public Icon getDisabledIcon(JComponent component, Icon icon) { argument
1700 return super.getDisabledIcon(component, icon);
1717 * @param component JComponent that will display the Icon, may be null
1723 public Icon getDisabledSelectedIcon(JComponent component, Icon icon) { argument
1728 return super.getDisabledSelectedIcon(component, icon);
2431 // component it describes when labels are
2434 // label and its associated component
2442 getContainerGap(JComponent component, int position, Container parent) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDropTargetContextPeer.java294 private int handleEnterMessage(final Component component, argument
299 return postDropTargetEvent(component, x, y, dropAction, actions,
352 private void handleExitMessage(final Component component, argument
358 postDropTargetEvent(component, 0, 0, DnDConstants.ACTION_NONE,
420 private int handleMotionMessage(final Component component, argument
425 return postDropTargetEvent(component, x, y, dropAction, actions,
493 private void handleDropMessage(final Component component, argument
498 postDropTargetEvent(component, x, y, dropAction, actions,
555 protected int postDropTargetEvent(final Component component, argument
563 AppContext appContext = SunToolkit.targetToAppContext(component);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DXPStyle.java448 * for a named part (component type)
470 * (component type) and which provides methods for painting backgrounds
474 final Component component; field in class:XPStyle.Skin
481 Skin(Component component, Part part) { argument
482 this(component, part, null);
489 Skin(Component component, Part part, State state) { argument
490 this.component = component;
494 String str = part.getControlName(component) +"." + part.name();
586 && component instanceo
[all...]
H A DWindowsLookAndFeel.java1956 * component UI delegates to determine if the mnemonic should be rendered.
1991 * component UI delegates as a hint to determine which style the component
2016 * @param component Component the error occured in, may be
2023 public void provideErrorFeedback(Component component) { argument
2024 super.provideErrorFeedback(component);
2532 public int getContainerGap(JComponent component, int position, argument
2535 super.getContainerGap(component, position, parent);
2536 return getButtonGap(component, position, dluToPixels(7, position));
2578 public Icon getDisabledIcon(JComponent component, Ico argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCInputMethod.java93 * events to the client component and to request information from
94 * the client component.
200 * enabled for the focussed component, incoming events of certain types
201 * are dispatched to the current input method for this component before
202 * they are dispatched to the component's methods or event listeners.
205 * causes the event to not get dispatched to the component's event
225 * a CJK input method. A component that doesn't want input method events still wants the dead-key
256 * Notifies the input method that a client component has been
258 * support has been disabled for the component.
269 * Informs the input method adapter about the component tha
274 setAWTFocussedComponent(Component component) argument
[all...]
H A DLWCToolkit.java487 public static <T> T invokeAndWait(final Callable<T> callable, Component component) throws Exception { argument
489 invokeAndWait(wrapper, component);
521 public static void invokeAndWait(Runnable event, Component component) throws InterruptedException, InvocationTargetException { argument
525 new InvocationEvent(component != null ? component : Toolkit.getDefaultToolkit(), event) {
538 if (component != null) {
539 AppContext appContext = SunToolkit.targetToAppContext(component);
560 public static void invokeLater(Runnable event, Component component) throws InvocationTargetException { argument
562 new InvocationEvent(component != null ? component
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWInputMethod.java49 * events to the client component and to request information from
50 * the client component.
287 // When the last focussed component peer is different from the
288 // current focussed component or if they are different client
290 // component and enable for the new one.
327 // focussed component has a different peer as the last focussed component.
369 protected void setAWTFocussedComponent(Component component) { argument
370 if (component == null) {
373 WComponentPeer peer = getNearestNativePeer(component);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXMBeanAttributes.java991 private Component component; field in class:XMBeanAttributes.AttributesListener
993 public AttributesListener(Component component) { argument
994 this.component = component;
1070 new ThreadDialog(component, message+"\n",
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultCaret.java56 * The caret acts as a mouse and focus listener on the text component
63 * text component is editable, the caret will become visible when focus
66 * The Highlighter bound to the associated text component is used to
70 * will render a solid color as specified in the associated text component
157 * a character is typed within editable text component it is inserted
224 * Gets the text editor component that this caret is
227 * @return the component
230 return component;
244 if (component != null) {
245 component
1560 JTextComponent component; field in class:DefaultCaret
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneUI.java273 final Component component;
277 component = null;
281 component = getTabComponentAt(tabIndex);
282 if (component == null) {
321 if (component == null && tabIndex >= 0) {
807 boolean isDefaultFocusReceiver(final JComponent component) { argument
809 Component defaultFocusReceiver = KeyboardFocusManager.getCurrentKeyboardFocusManager().getDefaultFocusTraversalPolicy().getDefaultComponent(getTopLevelFocusCycleRootAncestor(component));
810 isDefaultFocusReceiver = new Boolean(defaultFocusReceiver != null && defaultFocusReceiver.equals(component));
971 final Component component = getTabComponentAt(i);
973 if (component
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKColorChooserPanel.java70 * Convenience method to transfer focus to the next child of component.
73 static void compositeRequestFocus(Component component, boolean direction) { argument
74 if (component instanceof Container) {
75 Container container = (Container)component;
103 component.requestFocus();
303 * Resets the red component of the selected color.
310 * Resets the green component of the selected color.
317 * Resets the blue component of the selected color.
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java118 * Used to tell a text component, being used as an editor for table
246 * specified component.
253 // No component, assume aa is off
735 * Ignore mouse events if the component is null, not enabled, the event
746 * Request focus on the given component if it doesn't already have it
918 * + any translation component in the transform of either FRC, as it
976 * with the component.
1045 * is null or equals to the selection color of the text component.
1538 public static Component compositeRequestFocus(Component component) { argument
1539 if (component instanceo
[all...]

Completed in 141 milliseconds

12345