Searched refs:mbeanInterfaceType (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DStandardMBeanSupport.java47 * @param mbeanInterfaceType the class or interface to be used to determine
51 * that {@code resource} implements {@code mbeanInterfaceType},
52 * provided that {@code mbeanInterfaceType} is a class constant like
55 * if it does not implement the class {@code mbeanInterfaceType} or if
58 public <T> StandardMBeanSupport(T resource, Class<T> mbeanInterfaceType) argument
60 super(resource, mbeanInterfaceType);
H A DMBeanSupport.java125 <T> MBeanSupport(T resource, Class<T> mbeanInterfaceType) argument
127 if (mbeanInterfaceType == null)
129 if (!mbeanInterfaceType.isInstance(resource)) {
132 " is not an instance of " + mbeanInterfaceType.getName();
135 ReflectUtil.checkPackageAccess(mbeanInterfaceType);
138 this.perInterface = introspector.getPerInterface(mbeanInterfaceType);

Completed in 30 milliseconds