blob: af34fb2bd8e03e2d43954d152e098990bff2b802 [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
public class DebuggerTestApplication extends javax.swing.JFrame {
/** Creates new form TestApp */
public DebuggerTestApplication() {
this.setTitle("Debugger Test Application");
initComponents();
counterThread = new Thread(new Runnable() {
public void run() {
Thread thisThread = Thread.currentThread();
while (counterThread == thisThread) {
updateCounter();
try {
Thread.currentThread().sleep(1000);
if (counterThreadSuspended) {
synchronized(counterThread) {
while (counterThreadSuspended) {
counterThread.wait();
}
}
}
} catch (InterruptedException ie) {
ie.printStackTrace();
}
}
}
});
counterThread.setName("counterThread");
counterThread.start();
}
/** 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.
*/
private void initComponents() {//GEN-BEGIN:initComponents
jPanel1 = new javax.swing.JPanel();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
jProgressBar1 = new javax.swing.JProgressBar();
jProgressBar1.setMaximum(MAX_COUNT);
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
exitForm(evt);
}
});
jButton1.setText("Stop");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jPanel1.add(jButton1);
jButton2.setText("Clear");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
jPanel1.add(jButton2);
getContentPane().add(jPanel1, java.awt.BorderLayout.SOUTH);
jLabel1.setFont(new java.awt.Font("Dialog", 1, 36));
jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel1.setText("jLabel1");
getContentPane().add(jLabel1, java.awt.BorderLayout.CENTER);
getContentPane().add(jProgressBar1, java.awt.BorderLayout.NORTH);
pack();
}//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
if (!counterThreadSuspended) {
counterThreadSuspended = !counterThreadSuspended;
jButton1.setText("Start");
} else {
synchronized(counterThread) {
counterThreadSuspended = !counterThreadSuspended;
counterThread.notify();
jButton1.setText("Stop");
}
}
}//GEN-LAST:event_jButton1ActionPerformed
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
counter = 0;
jLabel1.setText(String.valueOf(counter));
}//GEN-LAST:event_jButton2ActionPerformed
private void updateCounter() {
counter = (counter < MAX_COUNT) ? ++counter : 0 ;
jLabel1.setText(String.valueOf(counter));
jProgressBar1.setValue(counter);
}
/** Exit the Application */
private void exitForm(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_exitForm
System.exit(0);
}//GEN-LAST:event_exitForm
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
new DebuggerTestApplication().show();
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JLabel jLabel1;
private javax.swing.JPanel jPanel1;
private javax.swing.JProgressBar jProgressBar1;
// End of variables declaration//GEN-END:variables
private Thread counterThread;
public volatile boolean counterThreadSuspended = false;
private int counter = 0;
private static final int MAX_COUNT = 13;
}