Package com.l2fprod.common.swing.plaf

Examples of com.l2fprod.common.swing.plaf.LookAndFeelAddons


    }
  }

  void addDemo(JTabbedPane tabs, String title, String demoClass) {
    String prefix = "com.l2fprod.common.demo.";
    LookAndFeelAddons addon = LookAndFeelAddons.getAddon();
    try {
      JComponent component = (JComponent)Class.forName(prefix + demoClass)
        .newInstance();
      component.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
      tabs.addTab(title, component);
    } catch (Exception e) {
    } finally {
      try {
        LookAndFeelAddons.setAddon(addon.getClass());
      } catch (InstantiationException e1) {
        e1.printStackTrace();
      } catch (IllegalAccessException e1) {
        e1.printStackTrace();
      }
View Full Code Here

TOP

Related Classes of com.l2fprod.common.swing.plaf.LookAndFeelAddons

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.