jdk/src/java.management/share/classes/javax/management/package.html
changeset 30678 a8b7fd8ede97
parent 25859 3317bb8137f4
child 46050 f51c14dc540f
equal deleted inserted replaced
30677:59b772a18fac 30678:a8b7fd8ede97
    28     </head>
    28     </head>
    29     <body bgcolor="white">
    29     <body bgcolor="white">
    30         <p>Provides the core classes for the Java Management Extensions.</p>
    30         <p>Provides the core classes for the Java Management Extensions.</p>
    31 
    31 
    32         <p>The Java Management Extensions
    32         <p>The Java Management Extensions
    33             (JMX<sup><font size="-1">TM</font></sup>) API is a standard
    33             (JMX&trade;) API is a standard
    34         API for management and monitoring.  Typical uses include:</p>
    34         API for management and monitoring.  Typical uses include:</p>
    35 
    35 
    36         <ul>
    36         <ul>
    37             <li>consulting and changing application configuration</li>
    37             <li>consulting and changing application configuration</li>
    38 
    38 
    85 
    85 
    86         <p>To make MBean implementation simple, the JMX API includes the
    86         <p>To make MBean implementation simple, the JMX API includes the
    87             notion of <em>Standard MBeans</em>.  A Standard MBean is one
    87             notion of <em>Standard MBeans</em>.  A Standard MBean is one
    88             whose attributes and operations are deduced from a Java
    88             whose attributes and operations are deduced from a Java
    89             interface using certain naming patterns, similar to those used
    89             interface using certain naming patterns, similar to those used
    90             by JavaBeans<sup><font size="-1">TM</font></sup>.  For
    90             by JavaBeans&trade;.  For example, consider an interface like this:</p>
    91         example, consider an interface like this:</p>
       
    92 
    91 
    93         <pre>
    92         <pre>
    94     public interface ConfigurationMBean {
    93     public interface ConfigurationMBean {
    95          public int getCacheSize();
    94          public int getCacheSize();
    96          public void setCacheSize(int size);
    95          public void setCacheSize(int size);