Results 1 to 3 of 3
- 06-05-2011, 11:07 AM #1
Member
- Join Date
- May 2011
- Posts
- 38
- Rep Power
- 0
Need help with ActionEvent/ItemEvent
I am trying to call the displayJButtonActionPerformed(evt) from 8 different JCheckBox methods similar to the one I posted below. I want to do this because it is more efficient and will cut down on some code. I have used this in the past but now that I am using an Actionevent and and ItemEvent I am getting an error when using (evt) as a a parameter, when trying to use displayJButtonActionPerformed(evt) in the addAnotherJCheckBoxItemStateChanged. I am using netbeans GUi editor so it created the methods for me when I select the acton I want to use. The error says....
Required: java.awt.event.ActionEvent
Found: java.awt.event.ItemEvent
What Can I do to fix this?
private void displayJButtonActionPerformed(java.awt.event.Actio nEvent evt) {
Invoice showInvoice = new Invoice();
showInvoice.calculate();
}
private void addAnotherJCheckBoxItemStateChanged(java.awt.event .ItemEvent evt) {
if (addAnotherJCheckBox.isSelected())
{
Invoice.isaddOneChecked = true;
}
else
Invoice.isaddOneChecked = false;
Invoice showInvoice = new Invoice();
showInvoice.calculate();
}
- 06-05-2011, 11:19 AM #2
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,545
- Rep Power
- 11
Refactor. Specifically take the code which you want to be common to displayJButtonActionPerformed() and the various checkbox methods and put it into its own method. Then call that method each time you need it.
- 06-05-2011, 02:17 PM #3
Similar Threads
-
What does (this) and ActionEvent e mean?
By africanhacker in forum New To JavaReplies: 3Last Post: 02-06-2011, 05:08 PM -
StringBuilder/ActionEvent help!
By Red727 in forum New To JavaReplies: 8Last Post: 12-07-2010, 03:01 AM -
Problems with ActionEvent for JButton
By TrueBear in forum AWT / SwingReplies: 1Last Post: 08-24-2009, 04:26 PM -
[SOLVED] Actionevent problem
By Cymro in forum New To JavaReplies: 3Last Post: 04-04-2008, 07:11 AM -
ActionEvent example
By Java Tip in forum Java TipReplies: 0Last Post: 03-11-2008, 11:00 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks