Searched defs:newKey (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DBSTItem.java45 public BSTItem(String newKey) { argument
46 this(newKey, null);
49 public BSTItem(String newKey, Object obj) { argument
50 key = newKey.toLowerCase();
H A DBST.java92 public BST find_tree(String newKey) { argument
93 return find_tree(newKey, true);
96 public BSTItem find(String newKey) { argument
97 return find(newKey, true);
101 public BST find_tree(String newKey, boolean exactMatch) { argument
104 * newKey);
108 int comp = data.compare(newKey, exactMatch);
114 rv = left.find_tree(newKey, exactMatch);
117 rv = right.find_tree(newKey, exactMatch);
120 // Debug.info("HELP: Found " + newKey
126 find(String newKey, boolean exactMatch) argument
[all...]

Completed in 44 milliseconds