summaryrefslogtreecommitdiff
path: root/plugins/svn4idea/src/org/jetbrains/idea/svn/annotate/AnnotateClient.java
blob: df30cfd89ae2d0fb1099bdcb34817d6d8f1c76ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.jetbrains.idea.svn.annotate;

import com.intellij.openapi.vcs.VcsException;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.idea.svn.api.SvnClient;
import org.tmatesoft.svn.core.wc.ISVNAnnotateHandler;
import org.tmatesoft.svn.core.wc.SVNDiffOptions;
import org.tmatesoft.svn.core.wc.SVNRevision;
import org.tmatesoft.svn.core.wc2.SvnTarget;

/**
 * @author Konstantin Kolosovsky.
 */
public interface AnnotateClient extends SvnClient {

  void annotate(@NotNull SvnTarget target,
                @NotNull SVNRevision startRevision,
                @NotNull SVNRevision endRevision,
                @Nullable SVNRevision pegRevision,
                boolean includeMergedRevisions,
                @Nullable SVNDiffOptions diffOptions,
                @Nullable ISVNAnnotateHandler handler) throws VcsException;
}