1 23 24 package org.enhydra.kelp.forte.panels; 25 26 31 public class BasicTest extends javax.swing.JPanel { 32 33 34 public BasicTest() { 35 initComponents (); 36 } 37 38 43 private void initComponents() { 45 jButton1 = new javax.swing.JButton (); 46 setLayout(new java.awt.BorderLayout ()); 47 48 jButton1.setLabel("Testing..."); 49 jButton1.addActionListener(new java.awt.event.ActionListener () 50 { 51 public void actionPerformed(java.awt.event.ActionEvent evt) 52 { 53 jButton1ActionPerformed(evt); 54 } 55 } 56 ); 57 58 add(jButton1, java.awt.BorderLayout.CENTER); 59 60 } 62 private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { } 66 67 private javax.swing.JButton jButton1; 69 71 } 72 | Popular Tags |