mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
23 lines
341 B
Java
23 lines
341 B
Java
import javax.swing.*;
|
|
|
|
public class BindingTest {
|
|
public JComponent myRootComponent;
|
|
private JLabel myLabel;
|
|
|
|
public BindingTest() {
|
|
this(0);
|
|
}
|
|
|
|
public BindingTest(int i) {
|
|
doTest();
|
|
myLabel.setText("My Text");
|
|
}
|
|
|
|
private void doTest() {
|
|
}
|
|
|
|
private void createUIComponents() {
|
|
myLabel = new JLabel();
|
|
}
|
|
}
|