e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 10 of 1065 (0.0090 seconds)
Class: jsp2.examples.el.Functions  ©, Rating: 0% of 0, C1

32 int result = 0; 33 for( int i = 0; i < text.length(); i++ ) { 34 if( vowels.indexOf( text.charAt( i ) ) != -1 ) { 35 result++; 36 }

Class: jsp2.examples.el.Functions  ©, Rating: 100% of 1, C1

32 int result = 0; 33 for( int i = 0; i < text.length(); i++ ) { 34 if( vowels.indexOf( text.charAt( i ) ) != -1 ) { 35 result++; 36 }

Class: com.technoetic.xplanner.tags.AccessKeyTransformer  ©, Rating: 0% of 0, C2

21 public static char getAccessKey(String text) { 22 if (text==null) return 0; 23 int pos = text.indexOf('&'); 24 if (pos == -1 || pos == text.length()-1) return 0; 25 char mnemonic = Character.toUpperCase(text.charAt(pos + 1));

Class: com.technoetic.xplanner.actions.ViewObjectAction  ©, Rating: 0% of 0, C2

27 String returnto = request.getParameter("returnto"); 28 if (returnto != null) { 29 forwardPath += 30 (forwardPath.indexOf("?") != -1 ? "&" : "?") + 31 "returnto=" + URLEncoder.encode(returnto, "UTF-8");

Class: compressionFilters.CompressionFilterTestServlet  ©, Rating: 0% of 0, C1

41 String name = (String)e.nextElement(); 42 out.println(name); 43 if (name.indexOf("gzip") != -1) { 44 out.println("gzip supported -- able to compress"); 45 }

Class: compressionFilters.CompressionFilterTestServlet  ©, Rating: 0% of 0, C1

41 String name = (String)e.nextElement(); 42 out.println(name); 43 if (name.indexOf("gzip") != -1) { 44 out.println("gzip supported -- able to compress"); 45 }

Class: compressionFilters.CompressionFilterTestServlet  ©, Rating: 0% of 0, C1

41 String name = (String)e.nextElement(); 42 out.println(name); 43 if (name.indexOf("gzip") != -1) { 44 out.println("gzip supported -- able to compress"); 45 }

Class: compressionFilters.CompressionFilterTestServlet  ©, Rating: 0% of 0, C1

41 String name = (String)e.nextElement(); 42 out.println(name); 43 if (name.indexOf("gzip") != -1) { 44 out.println("gzip supported -- able to compress"); 45 }

Class: org.springframework.web.servlet.mvc.UrlFilenameViewController  ©, Rating: 50% of 2, C2

49 } 50 String fileName = uri.substring(begin, end); 51 if (fileName.indexOf(".") != -1) { 52 fileName = fileName.substring(0, fileName.lastIndexOf(".")); 53 }

Class: org.springframework.web.servlet.mvc.UrlFilenameViewController  ©, Rating: 0% of 0, C2

43 } 44 else if (uri.indexOf("?") != -1) { 45 end = uri.indexOf("?"); 46 } 47 else {

Result Page:  1  |  2  |  3  |  4  |  5  |  6  |  7  |  8  |  9  |  10   Next