Search Results
OK to copy?
Examples 1 through 10 of
14 (0.0020 seconds)
Class:
org.apache.jasper.util.Queue
©,
Rating:
0% of 0,
C1
Class: org.apache.catalina.util.Queue ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.collections.Queue ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.MockBuildListener ©, Rating: 0% of 0, C1
Class: javax.xml.soap.MimeHeaders ©, Rating: 0% of 0, C1
Class: javax.xml.soap.MimeHeaders ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.helper.AntXMLContext ©, Rating: 0% of 0, C1
Class: org.apache.batik.apps.svgbrowser.Main ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.taskdefs.optional.metamata.MMetricsStreamHandler ©, Rating: 0% of 0, C2
Class: org.apache.tools.zip.ZipEntry ©, Rating: 0% of 0, C2
60 Object object = peek();
61 if (object != null)
62 vector.removeElementAt(0);
63 return object;
64 }
Class: org.apache.catalina.util.Queue ©, Rating: 0% of 0, C1
59 Object object = peek();
60 if (object != null)
61 vector.removeElementAt(0);
62 return object;
63 }
Class: org.apache.tomcat.util.collections.Queue ©, Rating: 0% of 0, C1
074 Object object = peek();
075 if (object != null)
076 vector.removeElementAt(0);
077 return object;
078 }
Class: org.apache.tools.ant.MockBuildListener ©, Rating: 0% of 0, C1
45
46 BuildEvent expected = (BuildEvent) buffer.elementAt(0);
47 buffer.removeElementAt(0);
48 assertEquals("unexpected messageLogged ", expected.getMessage(), actual.getMessage());
49 assertEquals("unexpected priority ", expected.getPriority(), actual.getPriority());
Class: javax.xml.soap.MimeHeaders ©, Rating: 0% of 0, C1
313
314 if (mimeheader.getName().equalsIgnoreCase(name)) {
315 headers.removeElementAt(i--);
316 }
317 }
Class: javax.xml.soap.MimeHeaders ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.helper.AntXMLContext ©, Rating: 0% of 0, C1
189 public void popWrapper() {
190 if (wStack.size() > 0) {
191 wStack.removeElementAt(wStack.size() - 1);
192 }
193 }
Class: org.apache.batik.apps.svgbrowser.Main ©, Rating: 0% of 0, C2
841
842 while (lastVisited.size() > 0 && lastVisited.size() > (maxVisitedURIs-1)) {
843 lastVisited.removeElementAt(0);
844 }
845
Class: org.apache.tools.ant.taskdefs.optional.metamata.MMetricsStreamHandler ©, Rating: 0% of 0, C2
397 // (#indent[/]*)(#construct.*)
398 String name = (String) metrics.elementAt(0);
399 metrics.removeElementAt(0);
400 int indent = 0;
401 pos = name.lastIndexOf('/');
Class: org.apache.tools.zip.ZipEntry ©, Rating: 0% of 0, C2
279 for (int i = 0; !done && i < extraFields.size(); i++) {
280 if (((ZipExtraField) extraFields.elementAt(i)).getHeaderId().equals(type)) {
281 extraFields.removeElementAt(i);
282 done = true;
283 }