org.eclipse.jgit.lib
Interface RepositoryListener

All Known Implementing Classes:
RepositoryAdapter

public interface RepositoryListener

A RepositoryListener gets notification about changes in refs or repository.

It currently does not get notification about which items are changed.


Method Summary
 void indexChanged(IndexChangedEvent e)
          Invoked when the index changes
 void refsChanged(RefsChangedEvent e)
          Invoked when a ref changes
 

Method Detail

refsChanged

void refsChanged(RefsChangedEvent e)
Invoked when a ref changes

Parameters:
e - information about the changes.

indexChanged

void indexChanged(IndexChangedEvent e)
Invoked when the index changes

Parameters:
e - information about the changes.