We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d81625 commit 7c36bc3Copy full SHA for 7c36bc3
1 file changed
src/javaforce/webui/PopupPanel.java
@@ -9,7 +9,16 @@ public class PopupPanel extends Panel {
9
private TitleBar titleBar;
10
private Block block;
11
private boolean modal;
12
+ /** Creates a new PopupPanel. */
13
public PopupPanel(String title) {
14
+ init(title);
15
+ }
16
+ /** Creates a new Popup panel with another Panel enclosed. */
17
+ public PopupPanel(String title, Panel panel) {
18
19
+ add(panel);
20
21
+ private void init(String title) {
22
initInvisible();
23
titleBar = new TitleBar(title, this);
24
add(titleBar);
0 commit comments