UI Designer test data moved

This commit is contained in:
Dmitry Jemerov
2009-09-10 18:44:04 +04:00
parent fcc49cb61c
commit 77a7302177
71 changed files with 14 additions and 14 deletions

View File

@@ -0,0 +1,21 @@
import javax.swing.*;
public class BindingTest {
public JComponent myRootComponent;
private JLabel myLabel;
public BindingTest() {
}
public BindingTest(int i) {
doTest();
myLabel.setText("My Text");
}
private void doTest() {
}
private void createUIComponents() {
myLabel = new JLabel();
}
}