Example usage for org.eclipse.jgit.events RefsChangedListener interface-usage

List of usage examples for org.eclipse.jgit.events RefsChangedListener interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jgit.events RefsChangedListener interface-usage.

Usage

From source file com.gitblit.tickets.BranchTicketService.java

/**
 * Implementation of a ticket service based on an orphan branch.  All tickets
 * are serialized as a list of JSON changes and persisted in a hashed directory
 * structure, similar to the standard git loose object structure.
 *
 * @author James Moger

From source file org.eclipse.egit.core.internal.rebase.RebaseInteractivePlan.java

/**
 * Representation of the {@link RebaseTodoFile} for Rebase-Todo and
 * Rebase-Done-File of a {@link Repository}.
 *
 * Reparses the rebase plan when the index changes or when a {@code Ref} is
 * moving in order to keep the in-memory plan in sync with the one on disk.

From source file org.eclipse.egit.ui.internal.commit.CommitEditor.java

/**
 * Editor class to view a commit in a form editor.
 */
public class CommitEditor extends SharedHeaderFormEditor implements RefsChangedListener, IShowInSource {

    /**

From source file org.eclipse.egit.ui.internal.decorators.GitDocument.java

class GitDocument extends Document implements RefsChangedListener {
    private final IResource resource;

    private ObjectId lastCommit;

    private ObjectId lastTree;

From source file org.eclipse.egit.ui.internal.decorators.GitLightweightDecorator.java

/**
 * Supplies annotations for displayed resources
 *
 * This decorator provides annotations to indicate the status of each resource
 * when compared to <code>HEAD</code>, as well as the index in the relevant
 * repository.

From source file org.eclipse.egit.ui.internal.history.GitHistoryPage.java

/** Graphical commit history viewer. */
public class GitHistoryPage extends HistoryPage implements RefsChangedListener {
    private static final String POPUP_ID = "org.eclipse.egit.ui.historyPageContributions"; //$NON-NLS-1$

    private static final String DESCRIPTION_PATTERN = "{0} - {1}"; //$NON-NLS-1$

From source file org.eclipse.egit.ui.internal.reflog.ReflogView.java

/**
 * A view that shows reflog entries. The View includes a quick filter that
 * searches on both the commit hashes and commit messages.
 */
public class ReflogView extends ViewPart implements RefsChangedListener, IShowInTarget {