757758759760761762763764765766767
{ graphComponent.zoomIn(); } else if (name.equalsIgnoreCase("zoomOut")) { graphComponent.zoomOut(); } else { graphComponent.zoomActual(); }
758759760761762763764765766767768
3839404142434445464748
public final class ZoomOutAction extends CallableSystemAction { public void performAction() { EditorTopComponent editor = EditorTopComponent.getActive(); if (editor != null) { editor.zoomOut(); } } public ZoomOutAction() {