List of usage examples for javax.swing JMenu getUIClassID
@BeanProperty(bound = false)
public String getUIClassID()
From source file:GetIt.java
public static void main(String args[]) throws Exception { JMenu it = new JMenu(); String classID = it.getUIClassID(); System.out.println(classID);//from w w w .j a va 2 s .co m String className = (String) UIManager.get(classID); System.out.println(className); Class.forName(className); System.out.println(System.getProperty("swing.defaultlaf")); System.out.println(System.getProperty("swing.auxiliarylaf")); System.out.println(System.getProperty("swing.plaf.multiplexinglaf")); System.out.println(System.getProperty("swing.installedlafs")); }