Search Results
OK to copy?
Examples 1 through 10 of
46 (0.045 seconds)
Class:
org.springframework.aop.framework.autoproxy.metadata.AttributesPoolingTargetSourceCreator
©,
Rating:
0% of 0,
C2
Class: org.springframework.web.servlet.handler.metadata.CommonsPathMapHandlerMapping ©, Rating: 0% of 0, C1
Class: org.springframework.web.servlet.handler.metadata.CommonsPathMapHandlerMapping ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.tags.displaytag.UserStoryDecorator ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.db.TaskQueryHelper ©, Rating: 0% of 0, C2
Class: org.apache.jorphan.collections.SearchByClass ©, Rating: 0% of 0, C1
Class: org.springframework.beans.propertyeditors.CustomCollectionEditor ©, Rating: 0% of 0, C2
Class: org.springframework.dao.support.DataAccessUtils ©, Rating: 0% of 0, C1
Class: org.apache.batik.bridge.RepaintManager ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.domain.Task ©, Rating: 0% of 0, C2
45 return null;
46 }
47 else if (atts.size() > 1) {
48 throw new BeanDefinitionStoreException("Cannot have more than one pooling attribute on " + beanClass);
49 }
Class: org.springframework.web.servlet.handler.metadata.CommonsPathMapHandlerMapping ©, Rating: 0% of 0, C1
74 protected PathMap[] getPathMapAttributes(Class handlerClass) {
75 Collection atts = Attributes.getAttributes(handlerClass, PathMap.class);
76 return (PathMap[]) atts.toArray(new PathMap[atts.size()]);
77 }
78
Class: org.springframework.web.servlet.handler.metadata.CommonsPathMapHandlerMapping ©, Rating: 0% of 0, C1
64 AttributeIndex ai = new AttributeIndex(getClass().getClassLoader());
65 Collection classes = ai.getClasses(PathMap.class);
66 return (Class[]) classes.toArray(new Class[classes.size()]);
67 }
68
Class: com.technoetic.xplanner.tags.displaytag.UserStoryDecorator ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.db.TaskQueryHelper ©, Rating: 0% of 0, C2
29 public boolean evaluate(Object o) {
30 final Task task = ((Task)o);
31 return (isCompleted == null || (isCompleted.booleanValue() == task.isCompleted())) &&
32 (isActive == null || (isActive.booleanValue() == task.getTimeEntries().size() > 0));
33 }
Class: org.apache.jorphan.collections.SearchByClass ©, Rating: 0% of 0, C1
128 tree.getTree(one).add(o, two);
129 tree.traverse(searcher);
130 assertEquals(1, searcher.getSearchResults().size());
131 }
132 }
Class: org.springframework.beans.propertyeditors.CustomCollectionEditor ©, Rating: 0% of 0, C2
094 // Convert Collection elements to array elements.
095 Collection source = (Collection) value;
096 Collection target = createCollection(this.collectionType, source.size());
097 target.addAll(source);
098 super.setValue(target);
Class: org.springframework.dao.support.DataAccessUtils ©, Rating: 0% of 0, C1
041 */
042 public static Object uniqueResult(Collection results) throws IncorrectResultSizeDataAccessException {
043 int size = results.size();
044 if (size == 0) {
045 return null;
Class: org.apache.batik.bridge.RepaintManager ©, Rating: 0% of 0, C1
095 throws InterruptedException {
096 renderer.flush(areas);
097 List rects = new ArrayList(areas.size());
098 AffineTransform at = renderer.getTransform();
099
Class: com.technoetic.xplanner.domain.Task ©, Rating: 0% of 0, C2
131
132 public boolean isCurrentlyActive(int personId) {
133 if (timeEntries != null && timeEntries.size() > 0) {
134 Iterator itr = timeEntries.iterator();
135 while (itr.hasNext()) {