javax.swing.UIManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
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;
}
}
}