public interface GutterRenderer
To register a gutter renderer, you need to add something like this to your atlassian-plugins.xml:
<gutter-renderer key="my-gutter" class="com.company.MyGutter"/>
Modifier and Type | Method and Description |
---|---|
java.util.List<DiffLineDecorator> |
getAnnotationDecorators(DiffType diffType,
java.lang.String repository,
java.lang.String fromPath,
java.lang.String fromRev,
java.lang.String toPath,
java.lang.String toRev)
Called to provide decorators for a given FishEye revision.
|
java.util.List<LineDecorator> |
getAnnotationDecorators(java.lang.String repository,
java.lang.String path,
java.lang.String rev)
Called to provide decorators for a given FishEye revision.
|
java.util.List<LineDecorator> getAnnotationDecorators(java.lang.String repository, java.lang.String path, java.lang.String rev)
repository
- the key of the repositorypath
- path of the filerev
- revision of the filejava.util.List<DiffLineDecorator> getAnnotationDecorators(DiffType diffType, java.lang.String repository, java.lang.String fromPath, java.lang.String fromRev, java.lang.String toPath, java.lang.String toRev)
repository
- the key of the repositorydiffType
- the type of difffromPath
- path of the filefromRev
- revision of the old revisiontoRev
- revision of the new revision