e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 91 through 100 of 186 (0.761 seconds)
Class: org.springframework.util.StringUtils  ©, Rating: 0% of 0, C2

256 StringTokenizer st = new StringTokenizer(str, delimiters); 257 List tokens = new ArrayList(); 258 while (st.hasMoreTokens()) { 259 String token = st.nextToken(); 260 if (trimTokens) {

Class: org.apache.jmeter.protocol.http.control.CookieManager  ©, Rating: 0% of 0, C2

476 Vector returns = new Vector(); 477 tokens = new StringTokenizer(splittee, splitChar); 478 while (tokens.hasMoreTokens()) 479 { 480 temp = (String) tokens.nextToken();

Class: org.apache.jmeter.protocol.http.control.CookieManager  ©, Rating: 0% of 0, C3

345 System.currentTimeMillis() + 1000 * 60 * 60 * 24); 346 // check the rest of the headers 347 while (st.hasMoreTokens()) 348 { 349 nvp = st.nextToken();

Class: org.apache.axis.attachments.AttachmentsImpl  ©, Rating: 0% of 0, C3

137 new java.util.StringTokenizer(contentType, " \t;"); 138 139 if (st.hasMoreTokens()) { 140 String mimetype = st.nextToken(); 141

Class: org.apache.batik.util.gui.CSSMediaPanel  ©, Rating: 0% of 0, C1

230 listModel.removeAllElements(); 231 StringTokenizer tokens = new StringTokenizer(media, " "); 232 while (tokens.hasMoreTokens()) { 233 listModel.addElement(tokens.nextToken()); 234 }

Class: org.apache.batik.util.gui.CSSMediaPanel  ©, Rating: 0% of 0, C1

470 String media = resources.getString("Media.list"); 471 StringTokenizer tokens = new StringTokenizer(media, " "); 472 while (tokens.hasMoreTokens()) { 473 medium.addItem(tokens.nextToken()); 474 }

Class: org.apache.batik.bridge.ViewBox  ©, Rating: 0% of 0, C2

288 StringTokenizer st = new StringTokenizer(value, " ,"); 289 try { 290 while (i < 4 && st.hasMoreTokens()) { 291 vb[i] = Float.parseFloat(st.nextToken()); 292 i++;

Class: org.apache.axis.providers.java.JavaProvider  ©, Rating: 0% of 0, C2

622 ArrayList methodList = new ArrayList(); 623 StringTokenizer tokenizer = new StringTokenizer(allowedMethods, " ,"); 624 while (tokenizer.hasMoreTokens()) { 625 methodList.add(tokenizer.nextToken()); 626 }

Class: org.apache.axis.deployment.wsdd.WSDDService  ©, Rating: 0% of 0, C2

289 ArrayList methodList = new ArrayList(); 290 StringTokenizer tokenizer = new StringTokenizer(allowedMethods, " ,"); 291 while (tokenizer.hasMoreTokens()) { 292 methodList.add(tokenizer.nextToken()); 293 }

Class: org.apache.tools.ant.listener.MailLogger  ©, Rating: 0% of 0, C1

271 Vector emailList = new Vector(); 272 StringTokenizer tokens = new StringTokenizer(listString, ","); 273 while (tokens.hasMoreTokens()) { 274 emailList.addElement(new EmailAddress(tokens.nextToken())); 275 }

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