Java Code Examples for javax.swing.SwingUtilities#getAccessibleChild()
The following examples show how to use
javax.swing.SwingUtilities#getAccessibleChild() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ComponentUI.java From openjdk-jdk9 with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @param c a {@code JComponent} for which to get a child object * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object * @see #getAccessibleChildrenCount */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 2
Source File: ComponentUI.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 3
Source File: ComponentUI.java From jdk8u-jdk with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 4
Source File: ComponentUI.java From jdk8u_jdk with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 5
Source File: ComponentUI.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 6
Source File: ComponentUI.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 7
Source File: ComponentUI.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 8
Source File: ComponentUI.java From Java8CN with Apache License 2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 9
Source File: ComponentUI.java From jdk8u-jdk with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 10
Source File: ComponentUI.java From jdk1.8-source-analysis with Apache License 2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 11
Source File: ComponentUI.java From Bytecoder with Apache License 2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @param c a {@code JComponent} for which to get a child object * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object * @see #getAccessibleChildrenCount */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 12
Source File: ComponentUI.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 13
Source File: ComponentUI.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 14
Source File: ComponentUI.java From JDKSourceCode1.8 with MIT License | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 15
Source File: ComponentUI.java From jdk8u60 with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 16
Source File: ComponentUI.java From TencentKona-8 with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }
Example 17
Source File: ComponentUI.java From dragonwell8_jdk with GNU General Public License v2.0 | 2 votes |
/** * Returns the <code>i</code>th <code>Accessible</code> child of the object. * UIs might need to override this if they present areas on the * screen that can be viewed as components, but actual components * are not used for presenting those areas. * * <p> * * Note: As of v1.3, it is recommended that developers call * <code>Component.AccessibleAWTComponent.getAccessibleChild()</code> instead of * this method. * * @see #getAccessibleChildrenCount * @param i zero-based index of child * @return the <code>i</code>th <code>Accessible</code> child of the object */ public Accessible getAccessibleChild(JComponent c, int i) { return SwingUtilities.getAccessibleChild(c, i); }