package com.traxel.lumbermill.desk;
import javax.swing.Action;
import javax.swing.JMenu;
private final MillDesktop DESKTOP = new MillDesktop();
private final WindowMenu WINDOW_MENU = new WindowMenu(DESKTOP);
private final MillMenu MILL_MENU = new MillMenu(this);
return DESKTOP;
}
public JMenu () {
return WINDOW_MENU;
}
public void add(
final MillFrame frame) {
WINDOW_MENU.addMillFrame(DESKTOP, frame);
DESKTOP.add(frame);
}
public MillMenu () {
return MILL_MENU;
}
}