Package org.eclipse.gef.ui.actions

Examples of org.eclipse.gef.ui.actions.PrintAction


    action = new SaveAction(this);
    registry.registerAction(action);
    getPropertyActions().add(action.getId());

    registry.registerAction(new PrintAction(this));

    action = new CopyRecordAction(this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());
View Full Code Here


    protected Object run( final Presentation context )
    {
        final DiagramPresentation diagramPresentation = (DiagramPresentation) context;
        final SapphireDiagramEditor diagramEditor = diagramPresentation.getConfigurationManager().getDiagramEditor();

        ( new PrintAction( diagramEditor ) ).run();

        return null;
    }
View Full Code Here

    action = new DirectEditAction((IWorkbenchPart) this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());

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

    action = new ExportAction(this);
    registry.registerAction(action);
View Full Code Here

    registry.registerAction(action);

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

    action = new PrintAction(this);
    registry.registerAction(action);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.gef.ui.actions.PrintAction

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.