Package org.eclipse.ui.views.tasklist

Examples of org.eclipse.ui.views.tasklist.TaskPropertiesDialog


    IResource resource= getResource();
    if (resource == null)
      return;
    Map attributes= getInitialAttributes();

    TaskPropertiesDialog dialog= new TaskPropertiesDialog(getTextEditor().getSite().getShell());
    dialog.setResource(resource);
    dialog.setInitialAttributes(attributes);
    dialog.open();
  }
View Full Code Here


    protected void addMarker() {
      IResource resource= getResource();
      if (resource == null)
        return;

           TaskPropertiesDialog dialog = new TaskPropertiesDialog(getTextEditor().getSite().getShell());
            dialog.setResource(resource);
            dialog.setInitialAttributes(getInitialAttributes());
            dialog.open();
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.views.tasklist.TaskPropertiesDialog

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.