Files
openide/plugins/ui-designer/testData/GotItPanel.java
Sergey Ignatov 4de5184083 fix test on mac
GitOrigin-RevId: 66d33d7d95bd663b0e6d1e6bf80c5657f2a40cfa
2020-01-19 00:39:52 +00:00

16 lines
332 B
Java

import javax.swing.*;
import java.awt.*;
public class GotItPanel {
public JComponent myRootComponent;
public JPanel myButton;
public JLabel myTitle;
public JLabel myButtonLabel;
public JEditorPane myMessage;
private void createUIComponents() {
myButton = new JPanel();
myMessage = new JEditorPane();
}
}