mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
16 lines
332 B
Java
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();
|
|
}
|
|
}
|