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

/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DBST.java50 public BST(BSTItem theItem) { argument
51 // Debug.info("HELP: New BST(" + theItem + ")");
54 data = theItem;
68 public BST insert(BSTItem theItem) { argument
70 int comp = data.compare(theItem);
75 theItem.toString());
78 left.insert(theItem);
80 left = node = new BST(theItem);
83 right.insert(theItem);
85 right = node = new BST(theItem);
[all...]

Completed in 62 milliseconds