e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 10 of 224 (0.028 seconds)
Class: org.apache.catalina.startup.CopyParentClassLoaderRule  ©, Rating: 0% of 0, C1

65 Container child = (Container) digester.peek(0); 66 Object parent = digester.peek(1); 67 Method method = 68 parent.getClass().getMethod("getParentClassLoader", new Class[0]); 69 ClassLoader classLoader =

Class: org.springframework.aop.framework.autoproxy.metadata.DummyAttributes  ©, Rating: 0% of 0, C3

44 PoolingAttribute pa = new PoolingAttribute(10); 45 register(TxClassWithClassAttribute.class, new Object[] { new DefaultTransactionAttribute(), pa }); 46 register(TxClassWithClassAttribute.class.getMethod("echoException", new Class[] { Exception.class }), echoAtts); 47 48 register(ThreadLocalTestBean.class, new Object[] { new ThreadLocalAttribute() });

Class: org.springframework.aop.framework.autoproxy.metadata.DummyAttributes  ©, Rating: 0% of 0, C3

40 }; 41 42 register(TxClassImpl.class.getMethod("echoException", new Class[] { Exception.class }), echoAtts); 43 44 PoolingAttribute pa = new PoolingAttribute(10);

Class: org.springframework.aop.framework.autoproxy.metadata.DummyAttributes  ©, Rating: 0% of 0, C3

31 32 public DummyAttributes() throws Exception { 33 register(TxClassImpl.class.getMethod("defaultTxAttribute", (Class[]) null), 34 new Object[] { new DefaultTransactionAttribute()}); 35

Class: org.apache.axis.encoding.ser.EnumDeserializer  ©, Rating: 0% of 0, C2

81 if (fromStringMethod == null) { 82 try { 83 fromStringMethod = javaType.getMethod("fromString", 84 new Class[] {java.lang.String.class}); 85 } catch (Exception e) {

Class: org.springframework.transaction.jta.WebLogicServerTransactionManagerFactoryBean  ©, Rating: 0% of 0, C1

68 } 69 try { 70 Method method = clazz.getMethod("getTransactionManager", (Class[]) null); 71 this.transactionManager = (TransactionManager) method.invoke(null, (Object[]) null); 72 }

Class: org.apache.jk.apr.TomcatStarter  ©, Rating: 0% of 0, C1

78 try { 79 Class argClass=args.getClass(); 80 Method m=c.getMethod( "main", new Class[] {argClass} ); 81 m.invoke( c, new Object[] { args } ); 82 System.out.println("TomcatStarter: Done");

Class: org.springframework.jdbc.support.nativejdbc.C3P0NativeJdbcExtractor  ©, Rating: 0% of 0, C1

049 public C3P0NativeJdbcExtractor() { 050 try { 051 this.getRawConnectionMethod = getClass().getMethod("getRawConnection", new Class[] {Connection.class}); 052 } 053 catch (NoSuchMethodException ex) {

Class: org.springframework.jdbc.support.nativejdbc.WebLogicNativeJdbcExtractor  ©, Rating: 0% of 0, C1

058 try { 059 this.jdbcExtensionClass = getClass().getClassLoader().loadClass(JDBC_EXTENSION_NAME); 060 this.getVendorConnectionMethod = this.jdbcExtensionClass.getMethod("getVendorConnection", (Class[]) null); 061 } 062 catch (Exception ex) {

Class: org.springframework.aop.framework.MethodInvocationTests  ©, Rating: 0% of 0, C1

098 List is = new LinkedList(); 099 100 Method m = Object.class.getMethod("hashCode", (Class[]) null); 101 Object proxy = new Object(); 102 ReflectiveMethodInvocation invocation =

Result Page:  1  |  2  |  3  |  4  |  5  |  6  |  7  |  8  |  9  |  10   Next