JTree: getNextMatch(String prefix, int startingRow, Bias bias) : JTree « javax.swing « Java by API






JTree: getNextMatch(String prefix, int startingRow, Bias bias)

  

import javax.swing.JTree;
import javax.swing.text.Position;
import javax.swing.tree.TreePath;

public class Main {
  public static void main(String[] argv) throws Exception {

    JTree tree = new JTree();

    int startRow = tree.getRowCount() - 1;
    String prefix = "b";
    TreePath path = tree.getNextMatch(prefix, startRow, Position.Bias.Backward);
    System.out.println(path);

  }
}

   
    
  








Related examples in the same category

1.Tree.closedIcon
2.Tree.collapsedIcon
3.Tree.expandedIcon
4.Tree.leafIcon
5.Tree.openIcon
6.JTree.DynamicUtilTreeNode: createChildren(DefaultMutableTreeNode parent, Object children)
7.new JTree()
8.new JTree(TreeNode root)
9.new JTree(Vector vector)
10.JTree: addTreeSelectionListener(TreeSelectionListener tsl)
11.JTree: addTreeWillExpandListener(TreeWillExpandListener tel)
12.JTree: convertValueToText(Object v,boolean s,boolean e,boolean l,int r,boolean h)
13.JTree: getCellRenderer()
14.JTree: getLeadSelectionRow()
15.JTree: getMaxSelectionRow()
16.JTree: getMinSelectionRow()
17.JTree: getPathForLocation(int x, int y)
18.JTree: getRowHeight()
19.JTree: getSelectionRows()
20.JTree: putClientProperty('JTree.lineStyle', 'None')
21.JTree: setAutoscrolls(boolean b)
22.JTree: setCellEditor(TreeCellEditor editor)
23.JTree: setExpandedState(TreePath path, boolean state)
24.JTree: setRowHeight(int rowHeight)
25.JTree: setTransferHandler(TransferHandler newHandler) (Drag and drop files from file explore)