Package com.intellij.openapi.vcs.impl

Examples of com.intellij.openapi.vcs.impl.UpToDateLineNumberProviderImpl


      });
  }

  public static void doAnnotate(final Editor editor, final Project project, final FileAnnotation fileAnnotation)
  {
    final UpToDateLineNumberProvider getUpToDateLineNumber = new UpToDateLineNumberProviderImpl(editor.getDocument(),
      project);

    editor.getGutter().closeAllAnnotations();

    // be careful, not proxies but original items are put there (since only their presence not behaviour is important)
View Full Code Here


  public static void doAnnotate(final Editor editor, final Project project, final FileAnnotation fileAnnotation)
  {
    String upToDateContent = fileAnnotation.getAnnotatedContent();

    final UpToDateLineNumberProvider getUpToDateLineNumber = new UpToDateLineNumberProviderImpl(
      editor.getDocument(),
      project,
      upToDateContent);

    editor.getGutter().closeAllAnnotations();
View Full Code Here

TOP

Related Classes of com.intellij.openapi.vcs.impl.UpToDateLineNumberProviderImpl

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.