Methods Summary |
---|
public void | cancelEditing(javax.swing.JTree a)Invokes the cancelEditing method on each UI handled by this object.
for (int i = 0; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).cancelEditing(a);
}
|
public boolean | contains(javax.swing.JComponent a, int b, int c)Invokes the contains method on each UI handled by this object.
boolean returnValue =
((ComponentUI) (uis.elementAt(0))).contains(a,b,c);
for (int i = 1; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).contains(a,b,c);
}
return returnValue;
|
public static javax.swing.plaf.ComponentUI | createUI(javax.swing.JComponent a)Returns a multiplexing UI instance if any of the auxiliary
LookAndFeel s supports this UI. Otherwise, just returns the
UI object obtained from the default LookAndFeel .
ComponentUI mui = new MultiTreeUI();
return MultiLookAndFeel.createUIs(mui,
((MultiTreeUI) mui).uis,
a);
|
public javax.accessibility.Accessible | getAccessibleChild(javax.swing.JComponent a, int b)Invokes the getAccessibleChild method on each UI handled by this object.
Accessible returnValue =
((ComponentUI) (uis.elementAt(0))).getAccessibleChild(a,b);
for (int i = 1; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).getAccessibleChild(a,b);
}
return returnValue;
|
public int | getAccessibleChildrenCount(javax.swing.JComponent a)Invokes the getAccessibleChildrenCount method on each UI handled by this object.
int returnValue =
((ComponentUI) (uis.elementAt(0))).getAccessibleChildrenCount(a);
for (int i = 1; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).getAccessibleChildrenCount(a);
}
return returnValue;
|
public javax.swing.tree.TreePath | getClosestPathForLocation(javax.swing.JTree a, int b, int c)Invokes the getClosestPathForLocation method on each UI handled by this object.
TreePath returnValue =
((TreeUI) (uis.elementAt(0))).getClosestPathForLocation(a,b,c);
for (int i = 1; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).getClosestPathForLocation(a,b,c);
}
return returnValue;
|
public javax.swing.tree.TreePath | getEditingPath(javax.swing.JTree a)Invokes the getEditingPath method on each UI handled by this object.
TreePath returnValue =
((TreeUI) (uis.elementAt(0))).getEditingPath(a);
for (int i = 1; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).getEditingPath(a);
}
return returnValue;
|
public java.awt.Dimension | getMaximumSize(javax.swing.JComponent a)Invokes the getMaximumSize method on each UI handled by this object.
Dimension returnValue =
((ComponentUI) (uis.elementAt(0))).getMaximumSize(a);
for (int i = 1; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).getMaximumSize(a);
}
return returnValue;
|
public java.awt.Dimension | getMinimumSize(javax.swing.JComponent a)Invokes the getMinimumSize method on each UI handled by this object.
Dimension returnValue =
((ComponentUI) (uis.elementAt(0))).getMinimumSize(a);
for (int i = 1; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).getMinimumSize(a);
}
return returnValue;
|
public java.awt.Rectangle | getPathBounds(javax.swing.JTree a, javax.swing.tree.TreePath b)Invokes the getPathBounds method on each UI handled by this object.
Rectangle returnValue =
((TreeUI) (uis.elementAt(0))).getPathBounds(a,b);
for (int i = 1; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).getPathBounds(a,b);
}
return returnValue;
|
public javax.swing.tree.TreePath | getPathForRow(javax.swing.JTree a, int b)Invokes the getPathForRow method on each UI handled by this object.
TreePath returnValue =
((TreeUI) (uis.elementAt(0))).getPathForRow(a,b);
for (int i = 1; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).getPathForRow(a,b);
}
return returnValue;
|
public java.awt.Dimension | getPreferredSize(javax.swing.JComponent a)Invokes the getPreferredSize method on each UI handled by this object.
Dimension returnValue =
((ComponentUI) (uis.elementAt(0))).getPreferredSize(a);
for (int i = 1; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).getPreferredSize(a);
}
return returnValue;
|
public int | getRowCount(javax.swing.JTree a)Invokes the getRowCount method on each UI handled by this object.
int returnValue =
((TreeUI) (uis.elementAt(0))).getRowCount(a);
for (int i = 1; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).getRowCount(a);
}
return returnValue;
|
public int | getRowForPath(javax.swing.JTree a, javax.swing.tree.TreePath b)Invokes the getRowForPath method on each UI handled by this object.
int returnValue =
((TreeUI) (uis.elementAt(0))).getRowForPath(a,b);
for (int i = 1; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).getRowForPath(a,b);
}
return returnValue;
|
public javax.swing.plaf.ComponentUI[] | getUIs()Returns the list of UIs associated with this multiplexing UI. This
allows processing of the UIs by an application aware of multiplexing
UIs on components.
////////////////////
// Common UI methods
////////////////////
return MultiLookAndFeel.uisToArray(uis);
|
public void | installUI(javax.swing.JComponent a)Invokes the installUI method on each UI handled by this object.
for (int i = 0; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).installUI(a);
}
|
public boolean | isEditing(javax.swing.JTree a)Invokes the isEditing method on each UI handled by this object.
boolean returnValue =
((TreeUI) (uis.elementAt(0))).isEditing(a);
for (int i = 1; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).isEditing(a);
}
return returnValue;
|
public void | paint(java.awt.Graphics a, javax.swing.JComponent b)Invokes the paint method on each UI handled by this object.
for (int i = 0; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).paint(a,b);
}
|
public void | startEditingAtPath(javax.swing.JTree a, javax.swing.tree.TreePath b)Invokes the startEditingAtPath method on each UI handled by this object.
for (int i = 0; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).startEditingAtPath(a,b);
}
|
public boolean | stopEditing(javax.swing.JTree a)Invokes the stopEditing method on each UI handled by this object.
boolean returnValue =
((TreeUI) (uis.elementAt(0))).stopEditing(a);
for (int i = 1; i < uis.size(); i++) {
((TreeUI) (uis.elementAt(i))).stopEditing(a);
}
return returnValue;
|
public void | uninstallUI(javax.swing.JComponent a)Invokes the uninstallUI method on each UI handled by this object.
for (int i = 0; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).uninstallUI(a);
}
|
public void | update(java.awt.Graphics a, javax.swing.JComponent b)Invokes the update method on each UI handled by this object.
for (int i = 0; i < uis.size(); i++) {
((ComponentUI) (uis.elementAt(i))).update(a,b);
}
|