e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 11 through 20 of 44 (0.0020 seconds)
Class: javax.servlet.jsp.tagext.SimpleTagSupport  ©, Rating: 0% of 0, C3

202 } 203 204 if ((isInterface && klass.isInstance(parent)) 205 || klass.isAssignableFrom(parent.getClass())) { 206 return parent;

Class: org.springframework.jndi.JndiTemplate  ©, Rating: 0% of 0, C1

145 public Object lookup(String name, Class requiredType) throws NamingException { 146 Object jndiObject = lookup(name); 147 if (requiredType != null && !requiredType.isInstance(jndiObject)) { 148 throw new NamingException( 149 "Object [" + jndiObject + "] available at JNDI location [" +

Class: org.springframework.remoting.rmi.RmiClientInterceptorUtils  ©, Rating: 0% of 0, C1

094 try { 095 Method method = invocation.getMethod(); 096 if (method.getDeclaringClass().isInstance(stub)) { 097 // directly implemented 098 return method.invoke(stub, invocation.getArguments());

Class: org.springframework.beans.factory.config.ConstructorArgumentValues  ©, Rating: 0% of 0, C2

137 } 138 } 139 else if (requiredType.isInstance(value) || (requiredType.isArray() && List.class.isInstance(value))) { 140 return valueHolder; 141 }

Class: javax.servlet.jsp.tagext.TagSupport  ©, Rating: 0% of 0, C3

090 } 091 092 if ((isInterface && klass.isInstance(tag)) || 093 klass.isAssignableFrom(tag.getClass())) 094 return tag;

Class: org.springframework.beans.factory.support.StaticListableBeanFactory  ©, Rating: 0% of 0, C3

223 } 224 else { 225 if (type.isInstance(beanInstance)) { 226 // If type to match is FactoryBean, return FactoryBean itself. 227 // Else, return bean instance.

Class: org.springframework.beans.factory.support.StaticListableBeanFactory  ©, Rating: 0% of 0, C3

186 } 187 else { 188 if (type.isInstance(beanInstance)) { 189 matches.add(name); 190 }

Class: org.springframework.beans.factory.support.StaticListableBeanFactory  ©, Rating: 0% of 0, C1

164 String name = (String) it.next(); 165 Object beanInstance = this.beans.get(name); 166 if (type.isInstance(beanInstance)) { 167 matches.add(name); 168 }

Class: org.apache.jmeter.gui.tree.JMeterTreeModel  ©, Rating: 0% of 0, C1

176 List nodeList) 177 { 178 if (type.isInstance(node.getUserObject())) 179 { 180 nodeList.add(node);

Class: org.apache.naming.resources.DirContextURLConnection  ©, Rating: 0% of 0, C1

276 277 for (int i = 0; i < classes.length; i++) { 278 if (classes[i].isInstance(object)) 279 return object; 280 }

Result Page:  1  |  2  |  3  |  4  |  5   Next