< prev index next >

src/java.management/share/classes/com/sun/management/DiagnosticCommandMBean.java

Print this page

        

*** 91,101 **** * returns the operation name generated from the diagnostic command name</li> * <li>{@link javax.management.MBeanOperationInfo#getDescription() getDescription()} * returns the diagnostic command description * (the same as the one return in the 'help' command)</li> * <li>{@link javax.management.MBeanOperationInfo#getImpact() getImpact()} ! * returns <code>ACTION_INFO</code></li> * <li>{@link javax.management.MBeanOperationInfo#getReturnType() getReturnType()} * returns {@code java.lang.String}</li> * <li>{@link javax.management.MBeanOperationInfo#getDescriptor() getDescriptor()} * returns a Descriptor instance (see below)</li> * </ul> --- 91,101 ---- * returns the operation name generated from the diagnostic command name</li> * <li>{@link javax.management.MBeanOperationInfo#getDescription() getDescription()} * returns the diagnostic command description * (the same as the one return in the 'help' command)</li> * <li>{@link javax.management.MBeanOperationInfo#getImpact() getImpact()} ! * returns {@code ACTION_INFO}</li> * <li>{@link javax.management.MBeanOperationInfo#getReturnType() getReturnType()} * returns {@code java.lang.String}</li> * <li>{@link javax.management.MBeanOperationInfo#getDescriptor() getDescriptor()} * returns a Descriptor instance (see below)</li> * </ul>
*** 103,113 **** * <p>The {@link javax.management.Descriptor Descriptor} * is a collection of fields containing additional * meta-data for a JMX element. A field is a name and an associated value. * The additional meta-data provided for an operation associated with a * diagnostic command are described in the table below: - * <p> * * <table border="1" cellpadding="5"> * <tr> * <th>Name</th><th>Type</th><th>Description</th> * </tr> --- 103,112 ----
*** 159,169 **** * <td>dcmd.arguments</td><td>Descriptor</td> * <td>A Descriptor instance containing the descriptions of options and * arguments supported by the diagnostic command (see below)</td> * </tr> * </table> - * <p> * * <p>The description of parameters (options or arguments) of a diagnostic * command is provided within a Descriptor instance. In this Descriptor, * each field name is a parameter name, and each field value is itself * a Descriptor instance. The fields provided in this second Descriptor --- 158,167 ----
< prev index next >