< prev index next >

jdk/src/jdk.management/share/classes/com/sun/management/internal/GcInfoCompositeData.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2004, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -21,32 +21,31 @@
  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
 
-package sun.management;
+package com.sun.management.internal;
 
 import java.lang.management.MemoryUsage;
 import java.lang.reflect.Method;
 import java.lang.reflect.Field;
-import java.util.Iterator;
 import java.util.Map;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Collections;
 import java.io.InvalidObjectException;
 import javax.management.openmbean.CompositeType;
 import javax.management.openmbean.CompositeData;
 import javax.management.openmbean.CompositeDataSupport;
 import javax.management.openmbean.TabularData;
 import javax.management.openmbean.SimpleType;
 import javax.management.openmbean.OpenType;
 import javax.management.openmbean.OpenDataException;
 import com.sun.management.GcInfo;
-import com.sun.management.GarbageCollectionNotificationInfo;
 import java.security.AccessController;
 import java.security.PrivilegedAction;
+import sun.management.LazyCompositeData;
+import static sun.management.LazyCompositeData.getLong;
+import sun.management.MappedMXBeanType;
+import sun.management.Util;
 
 /**
  * A CompositeData for GcInfo for the local management support.
  * This class avoids the performance penalty paid to the
  * construction of a CompositeData use in the local case.

@@ -264,11 +263,11 @@
                                       getBaseGcInfoItemNames(),
                                       getBaseGcInfoItemNames(),
                                       getBaseGcInfoItemTypes());
             } catch (OpenDataException e) {
                 // shouldn't reach here
-                throw Util.newException(e);
+                throw new RuntimeException(e);
             }
         }
         return baseGcInfoCompositeType;
     }
 
< prev index next >