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

CompilerRuntime.RuntimeProvider Maven / Gradle / Ivy

There is a newer version: 1.7.3
Show newest version
package CompilerRuntime;

public class RuntimeProvider {
	private static Runtime runtime;
	
	public static Runtime getRuntime(){
		return RuntimeProvider.runtime;
	}
	
	public static void setRuntime(Runtime r){
		if(r == null) System.out.println("r is null");
		RuntimeProvider.runtime = r;
		if(RuntimeProvider.runtime == null) System.out.println("r is null 2");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy