< prev index next >

test/java/lang/management/ManagementFactory/GetPlatformManagementInterfaces.java

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     7074616
  27  * @summary Basic unit test of the
  28  *          ManagementFactory.getPlatformManagementInterfaces() method
  29  * @author  Frederic Parain
  30  *
  31  * @modules jdk.management
  32  * @run main GetPlatformManagementInterfaces
  33  */
  34 
  35 import java.lang.management.*;
  36 import java.io.IOException;
  37 import java.util.*;
  38 import javax.management.*;
  39 
  40 import static java.lang.management.ManagementFactory.*;
  41 
  42 public class GetPlatformManagementInterfaces {
  43 
  44     private static enum ManagementInterfaces {
  45         CLASS_LOADING_MXBEAN(ClassLoadingMXBean.class),
  46         COMPILATION_MXBEAN(CompilationMXBean.class),
  47         MEMORY_MXBEAN(MemoryMXBean.class),
  48         OPERATING_SYSTEM_MXBEAN(OperatingSystemMXBean.class),
  49         RUNTIME_MXBEAN(RuntimeMXBean.class),
  50         THREAD_MXBEAN(ThreadMXBean.class),
  51         GARBAGE_COLLECTOR_MXBEAN(GarbageCollectorMXBean.class),




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     7074616
  27  * @summary Basic unit test of the
  28  *          ManagementFactory.getPlatformManagementInterfaces() method
  29  * @author  Frederic Parain
  30  *

  31  * @run main GetPlatformManagementInterfaces
  32  */
  33 
  34 import java.lang.management.*;
  35 import java.io.IOException;
  36 import java.util.*;
  37 import javax.management.*;
  38 
  39 import static java.lang.management.ManagementFactory.*;
  40 
  41 public class GetPlatformManagementInterfaces {
  42 
  43     private static enum ManagementInterfaces {
  44         CLASS_LOADING_MXBEAN(ClassLoadingMXBean.class),
  45         COMPILATION_MXBEAN(CompilationMXBean.class),
  46         MEMORY_MXBEAN(MemoryMXBean.class),
  47         OPERATING_SYSTEM_MXBEAN(OperatingSystemMXBean.class),
  48         RUNTIME_MXBEAN(RuntimeMXBean.class),
  49         THREAD_MXBEAN(ThreadMXBean.class),
  50         GARBAGE_COLLECTOR_MXBEAN(GarbageCollectorMXBean.class),


< prev index next >