mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
UI Designer test data moved
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import javax.swing.*;
|
||||
|
||||
public class BindingTest {
|
||||
public JComponent myRootComponent;
|
||||
private JLabel myLabel;
|
||||
|
||||
public BindingTest() {
|
||||
}
|
||||
|
||||
public BindingTest(int i) {
|
||||
doTest();
|
||||
myLabel.setText("My Text");
|
||||
}
|
||||
|
||||
private void doTest() {
|
||||
}
|
||||
|
||||
private void createUIComponents() {
|
||||
myLabel = new JLabel();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user