Search Results
OK to copy?
Examples 11 through 20 of
1017 (0.07 seconds)
Class:
org.apache.jmeter.engine.util.UndoVariableReplacement
©,
Rating:
0% of 0,
C1
Class: org.springframework.context.event.SimpleApplicationEventMulticaster ©, Rating: 0% of 0, C1
Class: org.springframework.util.CollectionUtils ©, Rating: 0% of 0, C2
Class: org.apache.naming.NamingContextEnumeration ©, Rating: 0% of 0, C1
Class: org.apache.naming.NamingContextEnumeration ©, Rating: 0% of 0, C1
Class: org.apache.naming.NamingContextBindingsEnumeration ©, Rating: 0% of 0, C1
Class: org.apache.naming.NamingContextBindingsEnumeration ©, Rating: 0% of 0, C1
Class: org.springframework.metadata.support.AbstractAttributes ©, Rating: 0% of 0, C2
Class: org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver ©, Rating: 0% of 0, C2
Class: org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator ©, Rating: 0% of 0, C2
54 Iterator iter = getVariables().keySet().iterator();
55 String input = prop.getStringValue();
56 while (iter.hasNext())
57 {
58 String key = (String) iter.next();
Class: org.springframework.context.event.SimpleApplicationEventMulticaster ©, Rating: 0% of 0, C1
64 public void multicastEvent(ApplicationEvent event) {
65 Iterator it = this.applicationListeners.iterator();
66 while (it.hasNext()) {
67 ApplicationListener listener = (ApplicationListener) it.next();
68 listener.onApplicationEvent(event);
Class: org.springframework.util.CollectionUtils ©, Rating: 0% of 0, C2
38 public static Object findValueOfType(Collection coll, Class type) throws IllegalArgumentException {
39 Object value = null;
40 for (Iterator it = coll.iterator(); it.hasNext();) {
41 Object obj = it.next();
42 if (type.isInstance(obj)) {
Class: org.apache.naming.NamingContextEnumeration ©, Rating: 0% of 0, C1
Class: org.apache.naming.NamingContextEnumeration ©, Rating: 0% of 0, C1
Class: org.apache.naming.NamingContextBindingsEnumeration ©, Rating: 0% of 0, C1
Class: org.apache.naming.NamingContextBindingsEnumeration ©, Rating: 0% of 0, C1
Class: org.springframework.metadata.support.AbstractAttributes ©, Rating: 0% of 0, C2
53
54 List matches = new LinkedList();
55 for (Iterator it = coll.iterator(); it.hasNext(); ) {
56 Object next = it.next();
57 if (filter.isInstance(next)) {
Class: org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver ©, Rating: 0% of 0, C2
69 return name;
70 }
71 for (Iterator it = this.mappings.keySet().iterator(); it.hasNext();) {
72 String registeredPath = (String) it.next();
73 if (PathMatcher.match(registeredPath, urlPath)) {
Class: org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator ©, Rating: 0% of 0, C2
52 return PROXY_WITHOUT_ADDITIONAL_INTERCEPTORS;
53 }
54 for (Iterator it = this.beanNames.iterator(); it.hasNext();) {
55 String mappedName = (String) it.next();
56 if (isMatch(beanName, mappedName)) {