* -- if we did that, the icons would appear in the menus, which I
* suppose is a neat trick but completely useless.
*/
public void initializeToolBar(JToolBar tb) {
Action action;
RelativeBundle resources = getResources();
// Conventional new/open/save buttons
action = getAction("New");
GUIUtilities.addToolBarButton(tb, action, null, resources
.getImageIcon("NewImage"));
action = getAction("Open");
GUIUtilities.addToolBarButton(tb, action, null, resources
.getImageIcon("OpenImage"));
action = getAction("Save");
GUIUtilities.addToolBarButton(tb, action, null, resources
.getImageIcon("SaveImage"));
}