e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 10 of 58 (0.0020 seconds)
Class: org.apache.jmeter.util.keystore.JmeterKeyStore  ©, Rating: 0% of 0, C2

69 Class keyStore = 70 Class.forName("org.apache.jmeter.util.keystore.DefaultKeyStore"); 71 Constructor con = keyStore.getConstructor(new Class[] { String.class }); 72 return (JmeterKeyStore) con.newInstance(new Object[] { type }); 73 }

Class: org.apache.jmeter.util.keystore.JmeterKeyStore  ©, Rating: 0% of 0, C2

59 Class.forName( 60 "org.apache.jmeter.util.keystore.PKCS12KeyStore"); 61 Constructor con = 62 PKCS12.getConstructor(new Class[] { String.class }); 63 return (JmeterKeyStore) con.newInstance(new Object[] { type });

Class: org.springframework.context.event.EventPublicationInterceptor  ©, Rating: 0% of 0, C1

64 public Object invoke(MethodInvocation invocation) throws Throwable { 65 Object retVal = invocation.proceed(); 66 Constructor constructor = this.applicationEventClass.getConstructor(new Class[]{Object.class}); 67 ApplicationEvent event = (ApplicationEvent) constructor.newInstance(new Object[]{invocation.getThis()}); 68 this.applicationEventPublisher.publishEvent(event);

Class: org.springframework.remoting.caucho.BurlapServiceExporter  ©, Rating: 0% of 0, C2

069 catch (NoSuchMethodException ex) { 070 // Fall back to Burlap 2.x (without service interface argument). 071 Constructor ctor = BurlapSkeleton.class.getConstructor(new Class[] {Object.class}); 072 this.skeleton = (BurlapSkeleton) ctor.newInstance(new Object[] {getProxyForService()}); 073 }

Class: org.springframework.remoting.caucho.BurlapServiceExporter  ©, Rating: 0% of 0, C2

062 try { 063 // Try Burlap 3.x (with service interface argument). 064 Constructor ctor = BurlapSkeleton.class.getConstructor(new Class[] {Object.class, Class.class}); 065 checkService(); 066 checkServiceInterface();

Class: org.springframework.remoting.caucho.HessianServiceExporter  ©, Rating: 0% of 0, C2

069 catch (NoSuchMethodException ex) { 070 // Fall back to Hessian 2.x (without service interface argument). 071 Constructor ctor = HessianSkeleton.class.getConstructor(new Class[] {Object.class}); 072 this.skeleton = (HessianSkeleton) ctor.newInstance(new Object[] {getProxyForService()}); 073 }

Class: org.springframework.remoting.caucho.HessianServiceExporter  ©, Rating: 0% of 0, C2

062 try { 063 // Try Hessian 3.x (with service interface argument). 064 Constructor ctor = HessianSkeleton.class.getConstructor(new Class[] {Object.class, Class.class}); 065 checkService(); 066 checkServiceInterface();

Class: org.springframework.jms.support.JmsUtils  ©, Rating: 0% of 0, C2

113 try { 114 Class clazz = Class.forName(longName); 115 Constructor ctor = clazz.getConstructor(new Class[] {ex.getClass()}); 116 Object counterpart = ctor.newInstance(new Object[]{ex}); 117 return (JmsException) counterpart;

Class: com.technoetic.xplanner.tags.TwikiTag  ©, Rating: 0% of 0, C2

095 SchemeHandler handler = null; 096 try { 097 Constructor argConstructor = handlerClass.getConstructor(new Class[]{String.class}); 098 if (argConstructor != null) { 099 handler = (SchemeHandler)argConstructor.newInstance(new Object[]{argument});

Class: com.technoetic.xplanner.security.AuthenticatorImpl  ©, Rating: 0% of 0, C2

081 loginModule = new JaasLoginModuleAdapter(jaasLoginModule, jaasPrincipalClass, options); 082 } else { 083 Constructor constructor = loginModuleClass.getConstructor(new Class[]{Map.class}); 084 loginModule = (LoginModule)constructor.newInstance(new Object[]{options}); 085 }

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