Home
last modified time | relevance | path

Searched refs:searchKey (Results 1 – 4 of 4) sorted by relevance

/trunk/main/scripting/examples/beanshell/Highlight/
H A Dhighlighter.bsh29 int replaceText(searchKey, color, bold) {
71 // Replaces all instances of searchKey with new Text properties
72 // and gets the number of instances of the searchKey
73 descriptor.setSearchString(searchKey);
74 descriptor.setReplaceString(searchKey);
84 searchKey = "";
95 searchKey = findTextBox.getText();
97 if(searchKey.equalsIgnoreCase("")) {
106 num = replaceText(searchKey, red, true);
110 searchKey + " was found " + num +
[all …]
H A DButtonPressHandler.bsh67 String searchKey = textField.getText();
118 // Replaces all instances of searchKey with new Text properties
119 // and gets the number of instances of the searchKey
120 descriptor.setSearchString(searchKey);
121 descriptor.setReplaceString(searchKey);
/trunk/main/scripting/examples/java/Highlight/
H A DHighlightText.java46 private String searchKey = ""; field in HighlightText
132 searchKey = findTextBox.getText(); in actionPerformed()
189 descriptor.setSearchString(searchKey); in actionPerformed()
190 descriptor.setReplaceString(searchKey); in actionPerformed()
/trunk/main/scripting/examples/javascript/Highlight/
H A DButtonPressHandler.js78 searchKey = textField.getText();
117 descriptor.setSearchString(searchKey);
118 descriptor.setReplaceString(searchKey);

Completed in 23 milliseconds