SingularField violations fixed

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@5557 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Wouter Zelle
2007-10-19 08:03:30 +00:00
parent 8fe436e1a2
commit d23b3b3260
2 changed files with 4 additions and 7 deletions

View File

@ -30,14 +30,12 @@ public class MainFrame
implements ActionListener, ActionCommands, ViewerModelListener {
private ViewerModel model;
private SourceCodePanel sourcePanel;
private ASTPanel astPanel;
private XPathPanel xPathPanel;
private JButton compileBtn;
private JButton evalBtn;
private JLabel statusLbl;
private JRadioButtonMenuItem jdk13MenuItem;
private JRadioButtonMenuItem jdk14MenuItem;
private JRadioButtonMenuItem jdk15MenuItem;
private JRadioButtonMenuItem jdk15MenuItem; //NOPMD
private JRadioButtonMenuItem jdk16MenuItem;
/**
@ -52,7 +50,7 @@ public class MainFrame
model = new ViewerModel();
model.addViewerModelListener(this);
sourcePanel = new SourceCodePanel(model);
astPanel = new ASTPanel(model);
ASTPanel astPanel = new ASTPanel(model);
xPathPanel = new XPathPanel(model);
getContentPane().setLayout(new BorderLayout());
JSplitPane editingPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, sourcePanel, astPanel);
@ -61,7 +59,7 @@ public class MainFrame
interactionsPane.add(xPathPanel, BorderLayout.SOUTH);
interactionsPane.add(editingPane, BorderLayout.CENTER);
getContentPane().add(interactionsPane, BorderLayout.CENTER);
compileBtn = new JButton(NLS.nls("MAIN.FRAME.COMPILE_BUTTON.TITLE"));
JButton compileBtn = new JButton(NLS.nls("MAIN.FRAME.COMPILE_BUTTON.TITLE"));
compileBtn.setActionCommand(COMPILE_ACTION);
compileBtn.addActionListener(this);
evalBtn = new JButton(NLS.nls("MAIN.FRAME.EVALUATE_BUTTON.TITLE"));

View File

@ -19,7 +19,6 @@ import java.awt.event.ActionListener;
public class ParseExceptionHandler extends JDialog implements ActionListener {
private Exception exc;
private JTextArea errorArea;
private JButton okBtn;
/**
@ -35,7 +34,7 @@ public class ParseExceptionHandler extends JDialog implements ActionListener {
}
private void init() {
errorArea = new JTextArea();
JTextArea errorArea = new JTextArea();
errorArea.setEditable(false);
errorArea.setText(exc.getMessage() + "\n");
getContentPane().setLayout(new BorderLayout());