Package org.apache.uima.tools.util.gui

Examples of org.apache.uima.tools.util.gui.AboutDialog


    } catch (IOException e) {
      System.err.println("Image could not be loaded: " + e.getMessage());
    }

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Document Analyzer");
    this.outputFileSelected = outputFileSelected;
    this.interactive = interactiveDA;
    this.javaViewerUCRBisSelected = jvucrbis;

    // Creating Menu Bar
View Full Code Here


    }

    this.getContentPane().setBackground(Color.WHITE);

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Annotation Viewer");

    // Create Menu Bar
    JMenuBar menuBar = new JMenuBar();
    setJMenuBar(menuBar);
View Full Code Here

    });

    aboutMenuItem.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        if (e.getActionCommand() == "About") {
          AboutDialog dialog = new AboutDialog(InstallPear.this, "About PEAR Installer");
          dialog.setVisible(true);
        }
      }
    });
    helpMenu.add(helpMenuItem);
    helpMenu.add(aboutMenuItem);
View Full Code Here

  public AboutUimaHandler(MainFrame frame) {
    this.main = frame;
  }

  public void actionPerformed(ActionEvent e) {
    AboutDialog dialog = new AboutDialog(this.main, "About UIMA");
    dialog.setVisible(true);
  }
View Full Code Here

    cpmPanel = new CpmPanel();
    this.getContentPane().add(cpmPanel, BorderLayout.CENTER);

    setJMenuBar(createMenuBar());

    aboutDialog = new AboutDialog(this, "About Collection Processing Engine Configurator");

    this.setSize(800, 600);
    this.pack();
  }
View Full Code Here

    JLabel banner = new JLabel(Images.getImageIcon(Images.BANNER));
    this.getContentPane().add(banner, BorderLayout.NORTH);

    this.getContentPane().add(pnG, BorderLayout.CENTER);

    aboutDialog = new AboutDialog(this, "About JCasGen");

    setJMenuBar(createMenuBar());

    pack();
    // show();
View Full Code Here

    } catch (IOException e) {
      System.err.println("Image could not be loaded: " + e.getMessage());
    }

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Document Analyzer");
    this.outputFileSelected = outputFileSelected;
    this.interactive = interactiveDA;
    this.javaViewerUCRBisSelected = jvucrbis;

    // Creating Menu Bar
View Full Code Here

    }

    this.getContentPane().setBackground(Color.WHITE);

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Annotation Viewer");

    // Create Menu Bar
    JMenuBar menuBar = new JMenuBar();
    setJMenuBar(menuBar);
View Full Code Here

    } catch (IOException e) {
      System.err.println("Image could not be loaded: " + e.getMessage());
    }

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Document Analyzer");
    this.outputFileSelected = outputFileSelected;
    this.interactive = interactiveDA;
    this.javaViewerUCRBisSelected = jvucrbis;

    // Creating Menu Bar
View Full Code Here

    });

    aboutMenuItem.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        if (e.getActionCommand() == "About") {
          AboutDialog dialog = new AboutDialog(InstallPear.this, "About PEAR Installer");
          dialog.setVisible(true);
        }
      }
    });
    helpMenu.add(helpMenuItem);
    helpMenu.add(aboutMenuItem);
View Full Code Here

TOP

Related Classes of org.apache.uima.tools.util.gui.AboutDialog

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.