Package no.ugland.utransprod.gui

Examples of no.ugland.utransprod.gui.ReportConstraintView


    /**
     * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
     */
    public void actionPerformed(ActionEvent arg0) {
      ReportConstraintViewHandler reportConstraintViewHandler = new ReportConstraintViewHandler();
      ReportConstraintView reportConstraintView = new ReportConstraintView(
          reportConstraintViewHandler);

      WindowInterface window = new JDialogAdapter(new JDialog(
          ProTransMain.PRO_TRANS_MAIN, "Transport statistikk"));

      window.add(reportConstraintView.buildPanel(window));
      window.pack();
      Util.locateOnScreenCenter(window);
      window.setVisible(true);

    }
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.gui.ReportConstraintView

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.