Override this method to attach additional information specific to your implementation of the tree. Below is an example of how to do this. ITreeModelRO myModel\u0009 = (ITreeModelRO) GetModel(TREEMODEL); XPArrayList mySelectedItems = myModel.GetSelectedItems(); XPStringBuilder sb = new XPStringBuilder(); sb.Append("myArray[").Append(iSelectedItemIndex).Append("].") .Append(OBJECT_CLASS_ID).Append(" = '") .Append(((TreeLeafNode) mySelectedItems.GetElement(iSelectedItemIndex)).m_nClassID) .Append("';\n"); return sb.ToString();
String
ATreeAS Class | com.plumtree.uiinfrastructure.tree Namespace