Examples of VcsDirtyScopeManager


Examples of com.intellij.openapi.vcs.changes.VcsDirtyScopeManager

  /**
   * Call "fileDirty" in the read action.
   */
  public static void markFileAsDirty(final Project project, final VirtualFile file) {
    final VcsDirtyScopeManager mgr = VcsDirtyScopeManager.getInstance(project);
    ApplicationManager.getApplication().runReadAction(new Runnable() {
      public void run() {  mgr.fileDirty(file)}
    });
  }
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.