Search Results
OK to copy?
Examples 71 through 80 of
1017 (0.199 seconds)
Class:
com.technoetic.xplanner.domain.Iteration
©,
Rating:
0% of 0,
C2
Class: org.springframework.web.context.support.ServletContextResourcePatternResolver ©, Rating: 0% of 0, C2
Class: org.apache.axis.soap.SOAPConnectionImpl ©, Rating: 0% of 0, C2
Class: org.apache.axis.wsdl.toJava.JavaInterfaceWriter ©, Rating: 0% of 0, C1
Class: org.apache.batik.svggen.DefaultStyleHandler ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.tags.TwikiTag ©, Rating: 0% of 0, C2
Class: org.apache.batik.dom.traversal.TraversalSupport ©, Rating: 0% of 0, C1
Class: org.apache.batik.swing.svg.SVGUpdateOverlay ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.export.IterationDataSource ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.file.FileSystemImpl ©, Rating: 0% of 0, C1
066 if (estimatedHours == 0 && userStories != null) {
067 Iterator itr = userStories.iterator();
068 while (itr.hasNext()) {
069 UserStory story = (UserStory)itr.next();
070 estimatedHours += story.getEstimatedHours();
Class: org.springframework.web.context.support.ServletContextResourcePatternResolver ©, Rating: 0% of 0, C2
101 if (candidates != null) {
102 boolean dirDepthNotFixed = (fullPattern.indexOf("**") != -1);
103 for (Iterator it = candidates.iterator(); it.hasNext();) {
104 String currPath = (String) it.next();
105 if (currPath.endsWith("/") &&
Class: org.apache.axis.soap.SOAPConnectionImpl ©, Rating: 0% of 0, C2
097 if (attachments != null) {
098 Iterator iterator = attachments.getAttachments().iterator();
099 while (iterator.hasNext()) {
100 Object attachment = iterator.next();
101 call.addAttachmentPart(attachment);
Class: org.apache.axis.wsdl.toJava.JavaInterfaceWriter ©, Rating: 0% of 0, C1
118 protected void writeFileBody(PrintWriter pw) throws IOException {
119 Iterator operations = portType.getOperations().iterator();
120 while(operations.hasNext()) {
121 Operation operation = (Operation) operations.next();
122 writeOperation(pw, operation);
Class: org.apache.batik.svggen.DefaultStyleHandler ©, Rating: 0% of 0, C2
103 Iterator iter = styleMap.keySet().iterator();
104 String styleName = null;
105 while (iter.hasNext()) {
106 styleName = (String)iter.next();
107 if (element.getAttributeNS(null, styleName).length() == 0){
Class: com.technoetic.xplanner.tags.TwikiTag ©, Rating: 0% of 0, C2
079 HashMap schemeHandlers = new HashMap();
080 Iterator keys = properties.getPropertyNames();
081 while (keys.hasNext()) {
082 String key = (String)keys.next();
083 if (key.startsWith(prefix)) {
Class: org.apache.batik.dom.traversal.TraversalSupport ©, Rating: 0% of 0, C1
127 if (iterators != null) {
128 Iterator it = iterators.iterator();
129 while (it.hasNext()) {
130 ((DOMNodeIterator)it.next()).nodeToBeRemoved(removedNode);
131 }
Class: org.apache.batik.swing.svg.SVGUpdateOverlay ©, Rating: 0% of 0, C2
113 group++;
114 int cmax = counts.length-1;
115 while (i.hasNext()) {
116 Rectangle r = (Rectangle)i.next();
117 Color c;
Class: com.technoetic.xplanner.export.IterationDataSource ©, Rating: 0% of 0, C2
044 public boolean next() throws JRException
045 {
046 if (iterator == null || !iterator.hasNext()) { return false; }
047
048 Object[] result = (Object[])iterator.next();
Class: com.technoetic.xplanner.file.FileSystemImpl ©, Rating: 0% of 0, C1
017 "from dir in " + Directory.class + " where dir.parent is null").
018 setMaxResults(1).list();
019 if (dirs.iterator().hasNext()) {
020 return (Directory)dirs.iterator().next();
021 } else {