//
	private static URL URL_OF_OUTER_JAR;
	static {
		/*
		 * same as System.getProperty("java.class.path"); which gives
		 * E:\Dev\Kirchhoff3d\dist\application.jar
		 * 
		 * only formatted as URL file:/E:/Dev/Kirchhoff3d/dist/application.jar
		 */
		ProtectionDomain domain = JarClassloader.class.getProtectionDomain();
		CodeSource cs = domain.getCodeSource();
		URL_OF_OUTER_JAR = cs.getLocation();
	}