private void pushButtonActionPerformed(java.awt.event.ActionEvent evt)
{
final int c=0;
final JDialog d=new JDialog();
JLabel l=new JLabel(\"Enter the E
This is the reason that keyword final exists in java. The variable is final, i.e. its value cannot be changed. If you have to change the value do not mark variable as final.