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,13 @@
import javax.swing.*;
public class BindingTest {
public JComponent myRootComponent;
private JLabel myLabel;
public BindingTest() {
}
private void createUIComponents() {
myLabel = new JLabel();
}
}