1 | public void initComponents() {↵ | | 1 | public void initComponents() {↵
|
2 | super.initComponents();↵ | | 2 | super.initComponents();↵
|
|
3 | matchComboBox = new JComboBox();↵ | | 3 | matchComboBox = new JComboBox();↵
|
4 | matchComboBox.addItem("contains");↵ | | 4 | matchComboBox.addItem("contains");↵
|
5 | matchComboBox.addItem("contains not");↵ | | 5 | matchComboBox.addItem("contains not");↵
|
|
| | | 6 | /*↵
|
| | | 7 | * matchComboBox.addItem("is"); matchComboBox.addItem("is not");↵
|
| | | 8 | * matchComboBox.addItem("begins with"); matchComboBox.addItem("ends↵
|
| | | 9 | * with");↵
|
| | | 10 | */↵
|
6 | addComponent(matchComboBox);↵ | | 11 | addComponent(matchComboBox);↵
|
|
7 | textField = new JTextField("body text", 12);↵ | | 12 | textField = new JTextField("header", 10);↵
|
|
8 | addComponent(textField);↵ | | 13 | addComponent(textField);↵
|
9 | | | 14 |
|