1 | interior.add(↵ | | 1 | interior.add(↵
|
2 | new JLabel(localizationResources.getString("Draw_lines"))↵ | | 2 | new JLabel(localizationResources.getString("Draw_shapes"))↵
|
3 | );↵ | | 3 | );↵
|
4 | this.drawLinesCheckBox = new JCheckBox();↵ | | 4 | this.drawShapesCheckBox = new JCheckBox();↵
|
5 | this.drawLinesCheckBox.setSelected(this.drawLines.booleanValue());↵ | | 5 | this.drawShapesCheckBox.setSelected(this.drawShapes.booleanValue());↵
|
6 | this.drawLinesCheckBox.setActionCommand("DrawLines");↵ | | 6 | this.drawShapesCheckBox.setActionCommand("DrawShapes");↵
|
7 | this.drawLinesCheckBox.addActionListener(this);↵ | | 7 | this.drawShapesCheckBox.addActionListener(this);↵
|
8 | interior.add(new JPanel());↵ | | 8 | interior.add(new JPanel());↵
|
9 | interior.add(this.drawLinesCheckBox);↵ | | 9 | interior.add(this.drawShapesCheckBox);↵
|
10 | | | 10 |
|