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("↵
|
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 | */↵ | | 5 | smaller");↵
|
| | | 6 | matchComboBox.addItem("bigger");↵
|
|
11 | addComponent(matchComboBox);↵ | | 7 | addComponent(matchComboBox);↵
|
|
12 | textField = new JTextField("header", 10);↵ | | 8 | textField = new JTextField("size", 12);↵
|
|
13 | addComponent(textField);↵ | | 9 | addComponent(textField);↵
|
14 | | | 10 |
|