/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package subscriber; /** * * @author le */ public class SubscriberView extends javax.swing.JFrame { /** * @return the btnStart */ public javax.swing.JButton getBtnStart() { return btnStart; } /** * @return the btnStop */ public javax.swing.JButton getBtnStop() { return btnStop; } /** * @return the lblZahl */ public javax.swing.JLabel getLblZahl() { return lblZahl; } /** * Creates new form SubscriberView */ public SubscriberView() { 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. */ @SuppressWarnings("unchecked") // //GEN-BEGIN:initComponents private void initComponents() { jPanel1 = new javax.swing.JPanel(); btnStart = new javax.swing.JButton(); btnStop = new javax.swing.JButton(); lblZahl = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); btnStart.setText("Start"); jPanel1.add(btnStart); btnStop.setText("Stopp"); jPanel1.add(btnStop); getContentPane().add(jPanel1, java.awt.BorderLayout.PAGE_START); lblZahl.setFont(new java.awt.Font("Ubuntu", 0, 60)); // NOI18N lblZahl.setHorizontalAlignment(javax.swing.SwingConstants.CENTER); lblZahl.setText("1"); getContentPane().add(lblZahl, java.awt.BorderLayout.CENTER); setSize(new java.awt.Dimension(365, 294)); setLocationRelativeTo(null); }// //GEN-END:initComponents /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ // /* 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(SubscriberView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(SubscriberView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(SubscriberView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(SubscriberView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } // /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new SubscriberView().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton btnStart; private javax.swing.JButton btnStop; private javax.swing.JPanel jPanel1; private javax.swing.JLabel lblZahl; // End of variables declaration//GEN-END:variables }