All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.mcs.jmeasurement.gui.TestWindow Maven / Gradle / Ivy

There is a newer version: 1.1.226
Show newest version
/*
 * TestWindow.java
 *
 * Created on __DATE__, __TIME__
 */

package de.mcs.jmeasurement.gui;

/**
 *
 * @author  __USER__
 */
public class TestWindow extends javax.swing.JFrame {

  /**
  * 
  */
  private static final long serialVersionUID = 1L;

  /** Creates new form TestWindow */
  public TestWindow() {
    initComponents();
  }

  /** This method is called from within the constructor to
   * initialize the form.
   * WARNING: Do NOT modify this code. The content of this method is
   * always regenerated by the Form Editor.
   */
  // //GEN-BEGIN:initComponents
  private void initComponents() {
    jPanel1 = new javax.swing.JPanel();
    jToolBar1 = new javax.swing.JToolBar();
    jButton1 = new javax.swing.JButton();
    jButton2 = new javax.swing.JButton();

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jButton1.setText("jButton1");
    jToolBar1.add(jButton1);

    jButton2.setText("jButton2");
    jToolBar1.add(jButton2);

    org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
    jPanel1.setLayout(jPanel1Layout);
    jPanel1Layout.setHorizontalGroup(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING).add(
        jToolBar1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE));
    jPanel1Layout.setVerticalGroup(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING).add(
        jPanel1Layout
            .createSequentialGroup()
            .add(jToolBar1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 25,
                org.jdesktop.layout.GroupLayout.PREFERRED_SIZE).addContainerGap(275, Short.MAX_VALUE)));

    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING).add(jPanel1,
        org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE));
    layout.setVerticalGroup(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING).add(jPanel1,
        org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE));
    pack();
  }// //GEN-END:initComponents

  /**
  * @param args the command line arguments
  */
  public static void main(String args[]) {
    java.awt.EventQueue.invokeLater(new Runnable() {
      public void run() {
        new TestWindow().setVisible(true);
      }
    });
  }

  // Variables declaration - do not modify//GEN-BEGIN:variables
  private javax.swing.JButton jButton1;

  private javax.swing.JButton jButton2;

  private javax.swing.JPanel jPanel1;

  private javax.swing.JToolBar jToolBar1;
  // End of variables declaration//GEN-END:variables

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy