Package org.springframework.ide.eclipse.beans.ui.graph.actions

Examples of org.springframework.ide.eclipse.beans.ui.graph.actions.ExportAction


    IAction zoomIn = new ZoomInAction(root.getZoomManager());
    IAction zoomOut = new ZoomOutAction(root.getZoomManager());
    getActionRegistry().registerAction(zoomIn);
    getActionRegistry().registerAction(zoomOut);
    getActionRegistry().registerAction(new ExportAction(this));
    getSite().getKeyBindingService().registerAction(zoomIn);
    getSite().getKeyBindingService().registerAction(zoomOut);

    GraphicalViewer viewer = getGraphicalViewer();
    viewer.setRootEditPart(root);
View Full Code Here


   */
  protected void createActions() {
    ActionRegistry registry = getActionRegistry();
    IAction action;

    action = new ExportAction(this);
    registry.registerAction(action);

    action = new OpenJavaType(this);
    registry.registerAction(action);

View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.beans.ui.graph.actions.ExportAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.