/*
* -------------------------------------------------------------------------
* $Id: MonteCarloProgress.java,v 1.3 2003/04/03 21:31:35 trudisch Exp $
* -------------------------------------------------------------------------
* Copyright (c) 1999 Visual Numerics Inc. All Rights Reserved.
*
* This software is confidential information which is proprietary to
* and a trade secret of Visual Numerics, Inc. Use, duplication or
* disclosure is subject to the terms of an appropriate license
* agreement.
*
* VISUAL NUMERICS MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE
* SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING
* BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. VISUAL
* NUMERICS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
* AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR
* ITS DERIVATIVES.
*--------------------------------------------------------------------------
*/
package com.imsl.demo.risk;
/**
*
* @author brophy
* @created February 1, 2002
*/
public class MonteCarloProgress extends javax.swing.JDialog {
private Simulate simulate;
/** Creates new form MonteCarloProgress */
public MonteCarloProgress(Simulate simulate, int min, int max) {
super(simulate, false);
this.simulate = simulate;
initComponents();
jProgressBar.setMinimum(min);
jProgressBar.setMaximum(max);
}
void setValue(int value) {
jProgressBar.setValue(value);
String text = java.text.NumberFormat.getNumberInstance().format(value)+" samples";
jLabelCount.setText(text);
}
/** 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();
jButtonCancel = new javax.swing.JButton();
jPanel2 = new javax.swing.JPanel();
jProgressBar = new javax.swing.JProgressBar();
jLabelCount = new javax.swing.JLabel();
setTitle("Running Monte Carlo...");
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
closeDialog(evt);
}
});
jButtonCancel.setText("Cancel");
jButtonCancel.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonCancelActionPerformed(evt);
}
});
jPanel1.add(jButtonCancel);
getContentPane().add(jPanel1, java.awt.BorderLayout.SOUTH);
jPanel2.setLayout(new java.awt.BorderLayout());
jPanel2.add(jProgressBar, java.awt.BorderLayout.CENTER);
jLabelCount.setText("0 samples");
jLabelCount.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jPanel2.add(jLabelCount, java.awt.BorderLayout.NORTH);
getContentPane().add(jPanel2, java.awt.BorderLayout.CENTER);
pack();
}//GEN-END:initComponents
private void jButtonCancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonCancelActionPerformed
simulate.cancelMonteCarlo();
}//GEN-LAST:event_jButtonCancelActionPerformed
/** Closes the dialog */
private void closeDialog(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_closeDialog
setVisible(false);
dispose();
}//GEN-LAST:event_closeDialog
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JPanel jPanel1;
private javax.swing.JButton jButtonCancel;
private javax.swing.JPanel jPanel2;
private javax.swing.JProgressBar jProgressBar;
private javax.swing.JLabel jLabelCount;
// End of variables declaration//GEN-END:variables
}