Lines Matching refs:oObj

61     public XAccessibleEditableText oObj = null;  field in _XAccessibleEditableText
87 initialText = oObj.getText(); in before()
101 String oldText = oObj.getText(); in _cutText()
103 int length = oObj.getCharacterCount(); in _cutText()
108 locRes = oObj.cutText(-1, length - 1); in _cutText()
114 curText = oObj.getText(); in _cutText()
121 locRes = oObj.cutText(0, length + 1); in _cutText()
127 curText = oObj.getText(); in _cutText()
135 locRes = oObj.cutText(0, length); in _cutText()
137 curText = oObj.getText(); in _cutText()
165 String text = oObj.getText(); in _pasteText()
167 int length = oObj.getCharacterCount(); in _pasteText()
172 locRes = oObj.pasteText(-1); in _pasteText()
178 curText = oObj.getText(); in _pasteText()
185 locRes = oObj.pasteText(length + 1); in _pasteText()
191 curText = oObj.getText(); in _pasteText()
198 locRes = oObj.pasteText(length); in _pasteText()
200 curText = oObj.getText(); in _pasteText()
230 String text = oObj.getText(); in _deleteText()
232 int length = oObj.getCharacterCount(); in _deleteText()
237 locRes = oObj.deleteText(-1, length); in _deleteText()
243 curText = oObj.getText(); in _deleteText()
250 locRes = oObj.deleteText(0, length + 1); in _deleteText()
256 curText = oObj.getText(); in _deleteText()
264 locRes = oObj.deleteText(length - 1, length); in _deleteText()
267 curText = oObj.getText(); in _deleteText()
298 String text = oObj.getText(); in _insertText()
300 int length = oObj.getCharacterCount(); in _insertText()
307 locRes = oObj.insertText(insStr, -1); in _insertText()
313 curText = oObj.getText(); in _insertText()
320 locRes = oObj.insertText(insStr, length+1); in _insertText()
326 curText = oObj.getText(); in _insertText()
333 locRes = oObj.insertText(insStr, length); in _insertText()
335 curText = oObj.getText(); in _insertText()
366 String oldText = oObj.getText(); in _replaceText()
368 oObj.setText(oldText + " part of string for replace"); in _replaceText()
370 String text = oObj.getText(); in _replaceText()
372 int length = oObj.getCharacterCount(); in _replaceText()
377 locRes = oObj.replaceText(-1, length, sReplacement); in _replaceText()
383 curText = oObj.getText(); in _replaceText()
390 locRes = oObj.replaceText(0, length + 1, sReplacement); in _replaceText()
396 curText = oObj.getText(); in _replaceText()
403 locRes = oObj.replaceText(startIndx, length, sReplacement); in _replaceText()
405 curText = oObj.getText(); in _replaceText()
434 String text = oObj.getText(); in _setAttributes()
436 int length = oObj.getCharacterCount(); in _setAttributes()
442 attrs = oObj.getCharacterAttributes(0, new String[]{""}); in _setAttributes()
444 locRes = oObj.setAttributes(-1, length - 1, attrs); in _setAttributes()
455 locRes = oObj.setAttributes(0, length + 1, attrs); in _setAttributes()
473 locRes = oObj.setAttributes(0, length, attrs); in _setAttributes()
479 PropertyValue[] newAttrs = oObj.getCharacterAttributes(0, new String[]{""}); in _setAttributes()
503 String oldText = oObj.getText(); in _setText()
508 locRes = oObj.setText(newText); in _setText()
510 String newCurText = oObj.getText(); in _setText()
516 locRes = oObj.setText(newText); in _setText()
518 newCurText = oObj.getText(); in _setText()
523 locRes = oObj.setText(oldText); in _setText()
525 newCurText = oObj.getText(); in _setText()
536 oObj.setText(initialText); in after()