753754755756757758759760761762763
String name = getValue(Action.NAME).toString(); mxGraphComponent graphComponent = (mxGraphComponent) source; if (name.equalsIgnoreCase("zoomIn")) { graphComponent.zoomIn(); } else if (name.equalsIgnoreCase("zoomOut")) { graphComponent.zoomOut(); }
754755756757758759760761762763764
3839404142434445464748
public final class ZoomInAction extends CallableSystemAction { public void performAction() { EditorTopComponent editor = EditorTopComponent.getActive(); if (editor != null) { editor.zoomIn(); } } public String getName() { return "Zoom in";