Examples of IWorkspaceRunnable


Examples of org.eclipse.core.resources.IWorkspaceRunnable

   * @throws CoreException if this method fails
   * @see IResource#createMarker(java.lang.String)
   */
  public static void createMarker(final IResource resource, final Map attributes, final String markerType) throws CoreException {

    IWorkspaceRunnable r= new IWorkspaceRunnable() {
      public void run(IProgressMonitor monitor) throws CoreException {
        IMarker marker= resource.createMarker(markerType);
        marker.setAttributes(attributes);
      }
    };
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.