Package com.sun.jaf.ui

Examples of com.sun.jaf.ui.UIFactory


        "handleAbout");
  }

  private void createToolBar()
  {
    UIFactory factory = UIFactory.getInstance();

    JToolBar toolbar = factory.createToolBar("main-toolbar");

    toolbar.setFloatable(false);
    if (toolbar != null)
      add(toolbar, BorderLayout.NORTH);
  }
View Full Code Here


      add(toolbar, BorderLayout.NORTH);
  }

  private void createMenuBar()
  {
    UIFactory factory = UIFactory.getInstance();

    JMenuBar menubar = factory.createMenuBar("main-menu");
    if (menubar != null)
      setJMenuBar(menubar);
  }
View Full Code Here

TOP

Related Classes of com.sun.jaf.ui.UIFactory

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.