(Frame owner)
| 59 | @SuppressWarnings("serial") |
| 60 | public class OptionsDialog extends JDialog { |
| 61 | public OptionsDialog(Frame owner){ |
| 62 | super(owner, "GATE Options", true); |
| 63 | MainFrame.getGuiRoots().add(this); |
| 64 | } |
| 65 | |
| 66 | protected void initLocalData(){ |
| 67 | lookAndFeelClassName = userConfig.getString(GateConstants.LOOK_AND_FEEL); |
nothing calls this directly
no test coverage detected