Search Results
OK to copy?
Examples 1 through 10 of
25 (0.0020 seconds)
Class:
org.springframework.remoting.support.RemoteAccessor
©,
Rating:
0% of 0,
C1
Class: org.springframework.aop.support.IntroductionInfoSupport ©, Rating: 0% of 0, C2
Class: org.springframework.remoting.support.RemoteExporter ©, Rating: 0% of 0, C1
Class: org.springframework.aop.support.DefaultIntroductionAdvisor ©, Rating: 0% of 0, C2
Class: org.springframework.beans.propertyeditors.CustomCollectionEditor ©, Rating: 0% of 0, C2
Class: org.springframework.jndi.JndiObjectFactoryBean ©, Rating: 0% of 0, C1
Class: javax.servlet.jsp.tagext.SimpleTagSupport ©, Rating: 0% of 0, C3
Class: org.springframework.ejb.access.AbstractRemoteSlsbInvokerInterceptor ©, Rating: 0% of 0, C1
Class: javax.servlet.jsp.tagext.TagSupport ©, Rating: 0% of 0, C3
Class: org.springframework.aop.support.AopUtils ©, Rating: 0% of 0, C1
50 */
51 public void setServiceInterface(Class serviceInterface) {
52 if (serviceInterface != null && !serviceInterface.isInterface()) {
53 throw new IllegalArgumentException("serviceInterface must be an interface");
54 }
Class: org.springframework.aop.support.IntroductionInfoSupport ©, Rating: 0% of 0, C2
069 for (Iterator it = this.publishedInterfaces.iterator(); it.hasNext();) {
070 Class pubIntf = (Class) it.next();
071 if (intf.isInterface() && intf.isAssignableFrom(pubIntf)) {
072 return true;
073 }
Class: org.springframework.remoting.support.RemoteExporter ©, Rating: 0% of 0, C1
062 */
063 public void setServiceInterface(Class serviceInterface) {
064 if (serviceInterface != null && !serviceInterface.isInterface()) {
065 throw new IllegalArgumentException("serviceInterface must be an interface");
066 }
Class: org.springframework.aop.support.DefaultIntroductionAdvisor ©, Rating: 0% of 0, C2
120 for (Iterator ut = this.interfaces.iterator(); ut.hasNext();) {
121 Class intf = (Class) ut.next();
122 if (!intf.isInterface()) {
123 throw new IllegalArgumentException("Class '" + intf.getName() +
124 "' is not an interface; cannot be used in an introduction");
Class: org.springframework.beans.propertyeditors.CustomCollectionEditor ©, Rating: 0% of 0, C2
066 throw new IllegalArgumentException("Collection type is required");
067 }
068 if (!collectionType.isInterface()) {
069 throw new IllegalArgumentException("Collection type has to be an interface");
070 }
Class: org.springframework.jndi.JndiObjectFactoryBean ©, Rating: 0% of 0, C1
076 */
077 public void setProxyInterface(Class proxyInterface) {
078 if (!proxyInterface.isInterface()) {
079 throw new IllegalArgumentException("[" + proxyInterface.getName() + "] is not an interface");
080 }
Class: javax.servlet.jsp.tagext.SimpleTagSupport ©, Rating: 0% of 0, C3
180 boolean isInterface = false;
181
182 if (from == null || klass == null
183 || (!JspTag.class.isAssignableFrom(klass)
184 && !(isInterface = klass.isInterface()))) {
Class: org.springframework.ejb.access.AbstractRemoteSlsbInvokerInterceptor ©, Rating: 0% of 0, C1
057 */
058 public void setHomeInterface(Class homeInterface) {
059 if (homeInterface != null && !homeInterface.isInterface()) {
060 throw new IllegalArgumentException(
061 "Home interface class [" + homeInterface.getClass() + "] is not an interface");
Class: javax.servlet.jsp.tagext.TagSupport ©, Rating: 0% of 0, C3
076 boolean isInterface = false;
077
078 if (from == null ||
079 klass == null ||
080 (!Tag.class.isAssignableFrom(klass) &&
Class: org.springframework.aop.support.AopUtils ©, Rating: 0% of 0, C1
142 interfaces[i] = Class.forName(interfaceNames[i].trim(), true, Thread.currentThread().getContextClassLoader());
143 // Check it's an interface.
144 if (!interfaces[i].isInterface()) {
145 throw new IllegalArgumentException("Can proxy only interfaces: [" + interfaces[i].getName() + "] is a class");
146 }