Lines Matching refs:xContext

73     public synchronized void setAccessibleObject (XAccessibleContext xContext)  in setAccessibleObject()  argument
78 if (xContext != null) in setAccessibleObject()
80 String sIndentation = showParents (xContext); in setAccessibleObject()
81 showContextInfo (xContext, sIndentation); in setAccessibleObject()
82 showComponentInfo (xContext, sIndentation); in setAccessibleObject()
91 public synchronized void updateAccessibleObject (XAccessibleContext xContext) in updateAccessibleObject() argument
93 setAccessibleObject (xContext); in updateAccessibleObject()
101 private void showContextInfo (XAccessibleContext xContext, String sIndentation) in showContextInfo() argument
105 + xContext.getAccessibleDescription() + "\n"; in showContextInfo()
107 showStates (xContext, sIndentation); in showContextInfo()
119 private void showStates (XAccessibleContext xContext, String sIndentation) in showStates() argument
122 XAccessibleStateSet xStateSet = xContext.getAccessibleStateSet(); in showStates()
143 private void showComponentInfo (XAccessibleContext xContext, String sIndentation) in showComponentInfo() argument
149 XAccessibleComponent.class, xContext); in showComponentInfo()
170 private String showParents (XAccessibleContext xContext) in showParents() argument
174 while (xContext != null) in showParents()
176 aPathToRoot.add (xContext); in showParents()
180 XAccessible xParent = xContext.getAccessibleParent(); in showParents()
182 xContext = xParent.getAccessibleContext(); in showParents()
184 xContext = null; in showParents()