UI Designer test data moved

This commit is contained in:
Dmitry Jemerov
2009-09-10 18:44:04 +04:00
parent fcc49cb61c
commit 77a7302177
71 changed files with 14 additions and 14 deletions

View File

@@ -0,0 +1,15 @@
import javax.swing.*;
import java.awt.*;
public class ConditionalMethodCallTest extends JPanel {
public JComponent myRootComponent;
public ConditionalMethodCallTest() {
this(1);
}
public ConditionalMethodCallTest(int i) {
setLayout(i == 0 ? new GridBagLayout() : new BorderLayout());
myRootComponent.getComponentCount();
}
}