Lines Matching refs:maChildList
32 protected Vector maChildList; field in NodeHandler
40 maChildList = new Vector (); in NodeHandler()
47 synchronized (maChildList) in clear()
49 maChildList = new Vector (); in clear()
61 synchronized (maChildList) in getChildCount()
63 return maChildList.size(); in getChildCount()
74 synchronized (maChildList) in getChild()
76 AccessibleTreeNode aChild = (AccessibleTreeNode)maChildList.get(nIndex); in getChild()
82 maChildList.setElementAt (aChild, nIndex); in getChild()
90 synchronized (maChildList) in getChildNoCreate()
92 return (AccessibleTreeNode)maChildList.get(nIndex); in getChildNoCreate()
102 synchronized (maChildList) in removeChild()
105 + maChildList.elementAt (nIndex)); in removeChild()
106 maChildList.remove (nIndex); in removeChild()
118 synchronized (maChildList) in indexOf()
120 return maChildList.indexOf (aNode); in indexOf()