< prev index next >

test/compiler/profiling/spectrapredefineclass/Agent.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 19,34 **** * 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. */ ! import java.security.*; ! import java.lang.instrument.*; ! import java.lang.reflect.*; ! import java.lang.management.ManagementFactory; import com.sun.tools.attach.VirtualMachine; class A { void m() { } } --- 19,37 ---- * 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 compiler.profiling.spectrapredefineclass; ! import com.sun.tools.attach.VirtualMachine; + import java.lang.instrument.ClassFileTransformer; + import java.lang.instrument.Instrumentation; + import java.lang.management.ManagementFactory; + import java.security.ProtectionDomain; + class A { void m() { } }
< prev index next >