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