com.intellij.openapi.vcs.changes.committed.DecoratorManager Java Examples

The following examples show how to use com.intellij.openapi.vcs.changes.committed.DecoratorManager. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: P4CommittedChangesProvider.java    From p4ic4idea with Apache License 2.0 5 votes vote down vote up
@Nullable
@Override
public VcsCommittedViewAuxiliary createActions(DecoratorManager manager, RepositoryLocation location) {
    LOG.debug("Creating actions");
    List<AnAction> allActions =
            Collections.singletonList(new ChangelistDescriptionAction());
    return new VcsCommittedViewAuxiliary(
            allActions,
            () -> {
                // on dispose - do nothing
                LOG.debug("Disposing view");
            },
            allActions
    );
}
 
Example #2
Source File: TFSCommittedChangesProvider.java    From azure-devops-intellij with MIT License 4 votes vote down vote up
@Nullable
public VcsCommittedViewAuxiliary createActions(final DecoratorManager manager, final RepositoryLocation location) {
    return null;
}
 
Example #3
Source File: CommittedChangesProvider.java    From consulo with Apache License 2.0 4 votes vote down vote up
@javax.annotation.Nullable
VcsCommittedViewAuxiliary createActions(final DecoratorManager manager, final RepositoryLocation location);