private void init(String menuFname) {
XFrame.frame = this;
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
if (menuFname != null) {
xmenuBar = new XMenuBar(this, new File(menuFname));
this.setJMenuBar(xmenuBar);
}
//Create the tabpanel
xtabbedEditorPanel = new XTabbedPanel();