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