All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.launcher.agent.LauncherAgent Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.launcher.agent;

import java.lang.instrument.Instrumentation;

public class LauncherAgent {

	public static Instrumentation	instrumentation;
	public static String			agentArgs;

	public static void premain(String agentArgs, Instrumentation instrumentation) {
		LauncherAgent.instrumentation = instrumentation;
		LauncherAgent.agentArgs = agentArgs;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy