Files
openide/plugins/ui-designer/testData/sourceCodeGenerator/customComponentReferencedInConstructor/BindingTest.java
2009-09-10 18:44:04 +04:00

17 lines
276 B
Java

import javax.swing.*;
public class BindingTest {
private int a;
public JComponent myRootComponent;
private JLabel myLabel;
public BindingTest() {
a = 0;
myLabel.setText("My Text");
}
private void createUIComponents() {
myLabel = new JLabel();
}
}