mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
17 lines
276 B
Java
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();
|
|
}
|
|
}
|