Search Results
OK to copy?
Examples 1 through 10 of
65 (0.0020 seconds)
Class:
jsp2.examples.el.Functions
©,
Rating:
0% of 0,
C1
Class: jsp2.examples.el.Functions ©, Rating: 0% of 0, C1
jgoodies_binding Class: com.jgoodies.binding.tests.value.ToUpperCaseStringHolder ©, Rating: 0% of 0, C1
Class: org.htmlparser.visitors.LinkFindingVisitor ©, Rating: 0% of 0, C1
Class: org.htmlparser.visitors.LinkFindingVisitor ©, Rating: 0% of 0, C1
Class: org.htmlparser.scanners.TitleScanner ©, Rating: 0% of 0, C1
Class: examples.ShowSource ©, Rating: 0% of 0, C2
Class: examples.ShowSource ©, Rating: 0% of 0, C2
Class: org.htmlparser.visitors.StringFindingVisitor ©, Rating: 0% of 0, C2
Class: org.htmlparser.visitors.StringFindingVisitor ©, Rating: 0% of 0, C1
Class: jsp2.examples.el.Functions ©, Rating: 0% of 0, C1
jgoodies_binding Class: com.jgoodies.binding.tests.value.ToUpperCaseStringHolder ©, Rating: 0% of 0, C1
48
49 public void setValue(Object newValue) {
50 String newText = ((String) newValue).toUpperCase();
51 Object oldText = text;
52 text = newText;
Class: org.htmlparser.visitors.LinkFindingVisitor ©, Rating: 0% of 0, C1
49 {
50 System.out.println("Matching with " + linkTag.getLinkText());
51 if (linkTag.getLinkText().toUpperCase().indexOf(linkTextToFind) != -1)
52 {
53 linkTagFound = true;
Class: org.htmlparser.visitors.LinkFindingVisitor ©, Rating: 0% of 0, C1
43 public LinkFindingVisitor(String linkTextToFind)
44 {
45 this.linkTextToFind = linkTextToFind.toUpperCase();
46 }
47
Class: org.htmlparser.scanners.TitleScanner ©, Rating: 0% of 0, C1
60 {
61 absorbLeadingBlanks(tagNameBeingChecked);
62 return (
63 tagNameBeingChecked.toUpperCase().startsWith(MATCH_NAME[0])
64 && null == previousOpenScanner);
Class: examples.ShowSource ©, Rating: 0% of 0, C2
36
37 public int doEndTag() throws JspException {
38 if ((jspFile.indexOf( ".." ) >= 0) ||
39 (jspFile.toUpperCase().indexOf("/WEB-INF/") != 0) ||
40 (jspFile.toUpperCase().indexOf("/META-INF/") != 0))
Class: examples.ShowSource ©, Rating: 0% of 0, C2
36
37 public int doEndTag() throws JspException {
38 if ((jspFile.indexOf( ".." ) >= 0) ||
39 (jspFile.toUpperCase().indexOf("/WEB-INF/") != 0) ||
40 (jspFile.toUpperCase().indexOf("/META-INF/") != 0))
Class: org.htmlparser.visitors.StringFindingVisitor ©, Rating: 0% of 0, C2
58 public void visitStringNode(StringNode stringNode)
59 {
60 String stringToBeSearched = stringNode.getText().toUpperCase();
61 if (!multipleSearchesWithinStrings
62 && stringToBeSearched.indexOf(stringToFind) != -1)
Class: org.htmlparser.visitors.StringFindingVisitor ©, Rating: 0% of 0, C1
46 public StringFindingVisitor(String stringToFind)
47 {
48 this.stringToFind = stringToFind.toUpperCase();
49 foundCount = 0;
50 multipleSearchesWithinStrings = false;