jdk/src/share/classes/javax/management/MBeanConstructorInfo.java
changeset 4156 acaa49a2768a
parent 1714 3eeb90939fe7
child 5506 202f599c92aa
equal deleted inserted replaced
4155:460e37d40f12 4156:acaa49a2768a
    65      * object describing the MBean constructor.
    65      * object describing the MBean constructor.
    66      */
    66      */
    67     public MBeanConstructorInfo(String description, Constructor<?> constructor) {
    67     public MBeanConstructorInfo(String description, Constructor<?> constructor) {
    68         this(constructor.getName(), description,
    68         this(constructor.getName(), description,
    69              constructorSignature(constructor),
    69              constructorSignature(constructor),
    70              Introspector.descriptorForElement(constructor, false));
    70              Introspector.descriptorForElement(constructor));
    71     }
    71     }
    72 
    72 
    73     /**
    73     /**
    74      * Constructs an <CODE>MBeanConstructorInfo</CODE> object.
    74      * Constructs an <CODE>MBeanConstructorInfo</CODE> object.
    75      *
    75      *