mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
19 lines
293 B
Java
19 lines
293 B
Java
import javax.swing.*;
|
|
|
|
public class BindingTest {
|
|
public JComponent myRootComponent;
|
|
private JLabel myLabel;
|
|
|
|
public BindingTest() {
|
|
doTest();
|
|
myLabel.setText("My Text");
|
|
}
|
|
|
|
private void doTest() {
|
|
}
|
|
|
|
private void createUIComponents() {
|
|
myLabel = new JLabel();
|
|
}
|
|
}
|