Searched refs:JTree (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DTreeUI.java29 import javax.swing.JTree;
33 * Pluggable look and feel interface for JTree.
45 public abstract Rectangle getPathBounds(JTree tree, TreePath path);
51 public abstract TreePath getPathForRow(JTree tree, int row);
58 public abstract int getRowForPath(JTree tree, TreePath path);
63 public abstract int getRowCount(JTree tree);
72 public abstract TreePath getClosestPathForLocation(JTree tree, int x,
79 public abstract boolean isEditing(JTree tree);
86 public abstract boolean stopEditing(JTree tree);
93 public abstract void cancelEditing(JTree tre
[all...]
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djavax_swing_JTree.java27 * @summary Tests JTree encoding
31 import javax.swing.JTree;
36 public final class javax_swing_JTree extends AbstractTest<JTree> {
41 protected JTree getObject() {
42 return new JTree(new MyModel());
45 protected JTree getAnotherObject() {
46 return new JTree();
49 protected void validate(JTree before, JTree after) {
H A DTest4631471.java31 import javax.swing.JTree;
68 // the JTree will archive correctly too
105 public static JTree getTree() {
106 return new JTree(getRoot());
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreeCellEditor.java30 import javax.swing.JTree;
36 * @see javax.swing.JTree
52 * @param tree the JTree that is asking the editor to edit;
62 Component getTreeCellEditorComponent(JTree tree, Object value,
H A DTreeCellRenderer.java28 import javax.swing.JTree;
50 * focus. <code>tree</code> is the <code>JTree</code> the receiver is being
60 * JTree.DropLocation dropLocation = tree.getDropLocation();
72 Component getTreeCellRendererComponent(JTree tree, Object value,
H A DDefaultTreeCellEditor.java59 * @see javax.swing.JTree
93 /** <code>JTree</code> instance listening too. */
94 protected transient JTree tree;
123 * object for a JTree using the specified renderer and
126 * @param tree a <code>JTree</code> object
129 public DefaultTreeCellEditor(JTree tree,
136 * object for a <code>JTree</code> using the
140 * @param tree a <code>JTree</code> object
144 public DefaultTreeCellEditor(JTree tree, DefaultTreeCellRenderer renderer,
204 public Component getTreeCellEditorComponent(JTree tre
[all...]
H A DDefaultTreeCellRenderer.java41 import javax.swing.JTree;
110 private JTree tree;
375 * has the effect of letting the font of the JTree show
404 * has the effect of letting the background color of the JTree show
424 public Component getTreeCellRendererComponent(JTree tree, Object value,
439 JTree.DropLocation dropLocation = tree.getDropLocation();
/openjdk7/jdk/test/javax/swing/JTree/8003830/
H A Dbug8003830.java27 import javax.swing.JTree;
51 JTree tree = new JTree();
60 public Rectangle getPathBounds(JTree tree, TreePath path) {
/openjdk7/jdk/test/javax/swing/JTree/8003400/
H A DTest8003400.java27 * @summary Tests that JTree shows the last row
46 import javax.swing.JTree;
53 private static final String TITLE = "Test JTree with a large model";
70 JTree tree = new JTree(root);
95 JTree tree = (JTree) pane.getViewport().getView();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiTreeUI.java30 import javax.swing.JTree;
78 public Rectangle getPathBounds(JTree a, TreePath b) {
93 public TreePath getPathForRow(JTree a, int b) {
108 public int getRowForPath(JTree a, TreePath b) {
123 public int getRowCount(JTree a) {
138 public TreePath getClosestPathForLocation(JTree a, int b, int c) {
153 public boolean isEditing(JTree a) {
168 public boolean stopEditing(JTree a) {
180 public void cancelEditing(JTree a) {
189 public void startEditingAtPath(JTree
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DTreeTableModelAdapter.java27 import javax.swing.JTree;
48 JTree tree;
51 public TreeTableModelAdapter(TreeTableModel treeTableModel, JTree tree) {
H A DJTreeTable.java41 * by using a JTree as a renderer (and editor) for the cells in a
49 /** A subclass of JTree. */
96 // Force the JTable and JTree to share their row selection models.
192 public JTree getTree() {
222 * A TreeCellRenderer that displays a JTree.
224 public class TreeTableCellRenderer extends JTree implements
394 * <code>getRowBounds</code> JTree method, and additionaly
405 JTree t = getTree();
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworksInBox.java44 import javax.swing.JTree;
102 JTree tree = new JTree(top);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTreeRenderer.java30 import javax.swing.JTree;
38 JTree tree, Object value, boolean selected, boolean expanded,
/openjdk7/jdk/test/javax/swing/JTree/4314199/
H A Dbug4314199.java28 * @summary Tests that JTree repaints correctly in a container with a JMenu
87 JTree tree = new JTree(new DefaultTreeModel(n1));
88 tree.putClientProperty("JTree.lineStyle", "Angled");
/openjdk7/jdk/test/javax/swing/JTree/6505523/
H A Dbug6505523.java38 import javax.swing.JTree;
49 private static JTree tree;
101 tree = new JTree(model);
125 JFrame frame = new JFrame("JTree Problem");
/openjdk7/jdk/test/javax/swing/JTree/8004298/
H A Dbug8004298.java45 private static JTree tree;
99 tree = new JTree(root);
111 public Rectangle getPathBounds(JTree tree, TreePath path) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java63 * The following <code>JTree</code> methods use "visible" to mean "displayed":
73 * The next group of <code>JTree</code> methods use "visible" to mean
91 * final JTree tree = ...;
112 * To use <code>JTree</code> to display compound nodes
145 public class JTree extends JComponent implements Scrollable, Accessible class in inherits:JComponent,Scrollable,Accessible
321 * a drop location for a <code>JTree</code>.
431 JTree.this.expandRow(expandRow);
502 DefaultMutableTreeNode root = new DefaultMutableTreeNode("JTree");
557 * Returns a <code>JTree</code> with a sample model.
563 public JTree() { method in class:JTree
577 public JTree(Object[] value) { method in class:JTree
593 public JTree(Vector<?> value) { method in class:JTree
610 public JTree(Hashtable<?,?> value) { method in class:JTree
626 public JTree(TreeNode root) { method in class:JTree
642 public JTree(TreeNode root, boolean asksAllowsChildren) { method in class:JTree
653 public JTree(TreeModel newModel) { method in class:JTree
[all...]
/openjdk7/jdk/test/javax/swing/JTree/4330357/
H A Dbug4330357.java27 * @summary Tests that real editor in JTree cleans up after editing was stopped
41 private static JTree tree;
145 tree = new JTree();
178 public Component getTreeCellEditorComponent(JTree tree, Object value,
/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DSampleTreeCellRenderer.java45 import javax.swing.JTree;
91 * This is messaged from JTree whenever it needs to get the size
96 public Component getTreeCellRendererComponent(JTree tree, Object value,
150 the JTree we're contained in). */ {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java92 protected JTree tree;
337 // push the value to the JTree instance. You should really only
338 // call these methods on the JTree.
519 public Rectangle getPathBounds(JTree tree, TreePath path) {
545 public TreePath getPathForRow(JTree tree, int row) {
554 public int getRowForPath(JTree tree, TreePath path) {
561 public int getRowCount(JTree tree) {
572 public TreePath getClosestPathForLocation(JTree tree, int x, int y) {
586 public boolean isEditing(JTree tree) {
595 public boolean stopEditing(JTree tre
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceTreeTool.java57 private JTree tree;
78 tree = new JTree(new DefaultTreeModel(root));
/openjdk7/jdk/test/javax/swing/JTree/6263446/
H A Dbug6263446.java43 private static JTree tree;
155 tree = new JTree(createTreeModel());
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java39 import javax.swing.JTree;
54 * {@link javax.swing.JTree}.
103 private void updateStyle(JTree tree) {
144 tree, JTree.SHOWS_ROOT_HANDLES_PROPERTY, showsRootHandles);
532 JTree.DropLocation dropLocation = tree.getDropLocation();
629 updateStyle((JTree)event.getSource());
633 JTree.DropLocation oldValue = (JTree.DropLocation)event.getOldValue();
644 JTree.DropLocation loc = tree.getDropLocation();
657 private void repaintDropLocation(JTree
[all...]
/openjdk7/jdk/test/com/sun/java/swing/plaf/gtk/4928019/
H A Dbug4928019.java232 new JTree() {

Completed in 70 milliseconds

12