/** * Create a new JFrame with given title and pluggable look and feel support * * @param title frame title * @param plaf true if all components of frame will support pluggable look and feel */ public OpenMapCFrame(String title, boolean plaf) { super(title); init(); setPlaf(plaf); }
/** Default constructor. Create new OpenMapCFrame without any contents or title. */ public OpenMapCFrame() { super(); init(); }