e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 9 of 9 (0.012 seconds)
Class: org.springframework.aop.framework.autoproxy.metadata.AttributesThreadLocalTargetSourceCreator  ©, Rating: 0% of 0, C1

43 // See if there's a pooling attribute 44 Collection atts = attributes.getAttributes(beanClass, ThreadLocalAttribute.class); 45 if (atts.isEmpty()) { 46 // No pooling attribute: don't create a custom TargetSource 47 return null;

Class: org.springframework.aop.framework.autoproxy.metadata.AttributesPrototypeTargetSourceCreator  ©, Rating: 0% of 0, C1

44 // See if there's a pooling attribute 45 Collection atts = attributes.getAttributes(beanClass, PrototypeAttribute.class); 46 if (atts.isEmpty()) { 47 // No pooling attribute: don't create a custom TargetSource 48 return null;

Class: org.springframework.aop.framework.autoproxy.metadata.AttributesPoolingTargetSourceCreator  ©, Rating: 0% of 0, C2

41 // See if there's a pooling attribute 42 Collection atts = attributes.getAttributes(beanClass, PoolingAttribute.class); 43 if (atts.isEmpty()) { 44 // No pooling attribute 45 return null;

Class: com.technoetic.xplanner.domain.Iteration  ©, Rating: 0% of 0, C2

111 public double getOriginalEstimatedHours() { 112 double originalEstimatedHours = 0; 113 if (userStories != null && !userStories.isEmpty()) { 114 Iterator itr = userStories.iterator(); 115 while (itr.hasNext()) {

Class: com.technoetic.xplanner.domain.Iteration  ©, Rating: 0% of 0, C2

099 public double getRemainingHours() { 100 double remainingHours = 0; 101 if (userStories != null && !userStories.isEmpty()) { 102 Iterator itr = userStories.iterator(); 103 while (itr.hasNext()) {

Class: com.technoetic.xplanner.domain.Iteration  ©, Rating: 0% of 0, C2

087 public double getAdjustedEstimatedHours() { 088 double adjustedEstimatedHours = 0; 089 if (userStories != null &&!userStories.isEmpty()) { 090 Iterator itr = userStories.iterator(); 091 while (itr.hasNext()) {

Class: com.technoetic.xplanner.domain.UserStory  ©, Rating: 0% of 0, C2

127 public double getAdjustedEstimatedHours() { 128 double adjustedEstimatedHours = 0; 129 if (!tasks.isEmpty()) { 130 Iterator itr = tasks.iterator(); 131 while (itr.hasNext()) {

Class: org.springframework.util.Assert  ©, Rating: 0% of 0, C1

192 */ 193 public static void notEmpty(Collection collection, String message) { 194 if (collection == null || collection.isEmpty()) { 195 throw new IllegalArgumentException(message); 196 }

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

307 removeAllAttachments(); 308 309 if ((parts != null) && !parts.isEmpty()) { 310 for (java.util.Iterator i = parts.iterator(); i.hasNext();) { 311 Object part = i.next();

Result Page:  1