Search Results
OK to copy?
Examples 1 through 10 of
17 (0.0010 seconds)
Class:
org.springframework.beans.factory.config.SetFactoryBean
©,
Rating:
100% of 1,
C1
Class: org.springframework.beans.factory.support.MethodOverrides ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.support.MethodOverrides ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.support.ManagedSet ©, Rating: 0% of 0, C1
Class: org.springframework.aop.support.IntroductionInfoSupport ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.config.ConstructorArgumentValues ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.ClassFileUtilities ©, Rating: 0% of 0, C3
Class: org.springframework.beans.factory.BeanFactoryUtils ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.BeanFactoryUtils ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.BeanFactoryUtils ©, Rating: 0% of 0, C1
65 }
66 Set result = (Set) BeanUtils.instantiateClass(this.targetSetClass);
67 result.addAll(this.sourceSet);
68 return result;
69 }
Class: org.springframework.beans.factory.support.MethodOverrides ©, Rating: 0% of 0, C1
055 if (other != null) {
056 this.overrides.addAll(other.getOverrides());
057 this.overloadedMethodNames.addAll(other.overloadedMethodNames);
058 }
059 }
Class: org.springframework.beans.factory.support.MethodOverrides ©, Rating: 0% of 0, C1
054 public void addOverrides(MethodOverrides other) {
055 if (other != null) {
056 this.overrides.addAll(other.getOverrides());
057 this.overloadedMethodNames.addAll(other.overloadedMethodNames);
058 }
Class: org.springframework.beans.factory.support.ManagedSet ©, Rating: 0% of 0, C1
Class: org.springframework.aop.support.IntroductionInfoSupport ©, Rating: 0% of 0, C1
077
078 protected void implementInterfacesOnObject(Object delegate) {
079 this.publishedInterfaces.addAll(AopUtils.getAllInterfacesAsList(delegate));
080 }
081
Class: org.springframework.beans.factory.config.ConstructorArgumentValues ©, Rating: 0% of 0, C1
056 public void addArgumentValues(ConstructorArgumentValues other) {
057 if (other != null) {
058 this.genericArgumentValues.addAll(other.genericArgumentValues);
059 this.indexedArgumentValues.putAll(other.indexedArgumentValues);
060 }
Class: org.apache.batik.util.ClassFileUtilities ©, Rating: 0% of 0, C3
201 it = desc.iterator();
202 while (it.hasNext()) {
203 result.addAll(getDescriptorClasses(strs[((Integer)it.next()).intValue()]));
204 }
205
Class: org.springframework.beans.factory.BeanFactoryUtils ©, Rating: 0% of 0, C1
137 String[] parentResult = beanNamesForTypeIncludingAncestors(
138 (ListableBeanFactory) hbf.getParentBeanFactory(), type);
139 result.addAll(Arrays.asList(parentResult));
140 }
141 }
Class: org.springframework.beans.factory.BeanFactoryUtils ©, Rating: 0% of 0, C1
131 public static String[] beanNamesForTypeIncludingAncestors(ListableBeanFactory lbf, Class type) {
132 Set result = new HashSet();
133 result.addAll(Arrays.asList(lbf.getBeanNamesForType(type)));
134 if (lbf instanceof HierarchicalBeanFactory) {
135 HierarchicalBeanFactory hbf = (HierarchicalBeanFactory) lbf;
Class: org.springframework.beans.factory.BeanFactoryUtils ©, Rating: 0% of 0, C1
114 String[] parentResult = beanNamesIncludingAncestors(
115 (ListableBeanFactory) hbf.getParentBeanFactory(), type);
116 result.addAll(Arrays.asList(parentResult));
117 }
118 }