Ejemplo n.º 1
0
  /** @param args the command line arguments */
  public static void main(String args[]) {
    boolean bGUIpara = true;

    // Parse parameter:
    int iSize = args.length;
    // PBVCPlugin -gui=false -K=/somewhere/c1.pprj -Q=/somewhere/QueriesRepositories
    //
    for (int i = 0; i < iSize; i++) {}

    if (bGUIpara) {
      java.awt.EventQueue.invokeLater(
          new Runnable() {
            public void run() {
              PBVCPlugin dialog = new PBVCPlugin(new javax.swing.JFrame(), true);
              dialog.addWindowListener(
                  new java.awt.event.WindowAdapter() {
                    public void windowClosing(java.awt.event.WindowEvent e) {
                      System.exit(0);
                    }
                  });
              dialog.setVisible(true);
            }
          });
    } else {
      // Using command line
      /*
       */
    }
  }
Ejemplo n.º 2
0
 /** @param args the command line arguments */
 public static void main(String args[]) {
   java.awt.EventQueue.invokeLater(
       new Runnable() {
         public void run() {
           Login dialog = new Login();
           dialog.addWindowListener(
               new java.awt.event.WindowAdapter() {
                 @Override
                 public void windowClosing(java.awt.event.WindowEvent e) {
                   try {
                     if (streamOut != null) streamOut.close();
                     if (socket != null) socket.close();
                   } catch (IOException ioe) {
                     System.out.println("Error closing ...");
                   }
                   System.exit(0);
                 }
               });
           dialog.setVisible(true);
         }
       });
 }
Ejemplo n.º 3
0
  /** @param args the command line arguments */
  public static void main(String args[]) {
    /* Set the Nimbus look and feel */
    // <editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
    /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
     * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
     */
    try {
      for (javax.swing.UIManager.LookAndFeelInfo info :
          javax.swing.UIManager.getInstalledLookAndFeels()) {
        if ("Nimbus".equals(info.getName())) {
          javax.swing.UIManager.setLookAndFeel(info.getClassName());
          break;
        }
      }
    } catch (ClassNotFoundException ex) {
      java.util.logging.Logger.getLogger(RegisterUI.class.getName())
          .log(java.util.logging.Level.SEVERE, null, ex);
    } catch (InstantiationException ex) {
      java.util.logging.Logger.getLogger(RegisterUI.class.getName())
          .log(java.util.logging.Level.SEVERE, null, ex);
    } catch (IllegalAccessException ex) {
      java.util.logging.Logger.getLogger(RegisterUI.class.getName())
          .log(java.util.logging.Level.SEVERE, null, ex);
    } catch (javax.swing.UnsupportedLookAndFeelException ex) {
      java.util.logging.Logger.getLogger(RegisterUI.class.getName())
          .log(java.util.logging.Level.SEVERE, null, ex);
    }
    // </editor-fold>
    // </editor-fold>

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(
        new Runnable() {
          public void run() {
            new RegisterUI().setVisible(true);
          }
        });
  }