(Frame owner, String title, Component contents)
| 45 | public class OkCancelDialog extends JDialog { |
| 46 | |
| 47 | protected OkCancelDialog(Frame owner, String title, Component contents){ |
| 48 | super(owner, title); |
| 49 | init(contents); |
| 50 | } |
| 51 | |
| 52 | protected OkCancelDialog(Dialog owner, String title, Component contents){ |
| 53 | super(owner, title); |