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.1.0
Show newest version
package aQute.launcher.agent;

import java.lang.instrument.Instrumentation;

import org.osgi.annotation.bundle.Header;

@Header(name = "Premain-Class", value = "${@class}")
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 - 2025 Weber Informatics LLC | Privacy Policy