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

javax.swing.UIManager Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package javax.swing;

public class UIManager {
	public static String getSystemLookAndFeelClassName() {
		return "default";
	}

	public static void setLookAndFeel(String className) throws ClassNotFoundException, InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException {
	}

	public static UIManager.LookAndFeelInfo[] getInstalledLookAndFeels() {
		return new LookAndFeelInfo[] { new LookAndFeelInfo("default", "defaultLookAndFeelFqName") };
	}

	public static class LookAndFeelInfo {
		private String name;
		private String className;

		public LookAndFeelInfo(String name, String className) {
			this.name = name;
			this.className = className;
		}

		public String getName() {
			return name;
		}

		public String getClassName() {
			return className;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy