Package org.eclipse.ui.ide.undo

Examples of org.eclipse.ui.ide.undo.CreateMarkersOperation


    Map attributes= getInitialAttributes();
    if (fAskForLabel) {
      if (!askForLabel(attributes))
        return;
    }
    execute(new CreateMarkersOperation(fMarkerType, attributes, resource, getOperationName()));
  }
View Full Code Here


          return shell;
        return null;
      }
    };

    IUndoableOperation operation= new CreateMarkersOperation(fMarkerType, attributes, resource, name);
    IOperationHistory operationHistory= PlatformUI.getWorkbench().getOperationSupport().getOperationHistory();
    try {
      operationHistory.execute(operation, null, context);
    } catch (ExecutionException x) {
      Bundle bundle= Platform.getBundle(PlatformUI.PLUGIN_ID);
View Full Code Here

TOP

Related Classes of org.eclipse.ui.ide.undo.CreateMarkersOperation

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.