20 |
super(SwingUtil.getParentWindow(owner), title); |
super(SwingUtil.getParentWindow(owner), title); |
21 |
initDialog(); |
initDialog(); |
22 |
} |
} |
23 |
|
|
24 |
|
/** A flag checking that we just get disposed once **/ |
25 |
|
protected boolean isDisposed = false; |
26 |
|
|
27 |
|
|
28 |
public AtlasDialog(final Component parentWindowComponent) { |
public AtlasDialog(final Component parentWindowComponent) { |
29 |
this(parentWindowComponent, null); |
this(parentWindowComponent, null); |
75 |
|
|
76 |
return rootPane; |
return rootPane; |
77 |
} |
} |
78 |
|
|
79 |
|
@Override |
80 |
|
public void dispose() { |
81 |
|
super.dispose(); |
82 |
|
isDisposed = true; |
83 |
|
} |
84 |
} |
} |