Package org.eclipse.jgit.events
Class IndexChangedEvent
- java.lang.Object
-
- org.eclipse.jgit.events.RepositoryEvent<IndexChangedListener>
-
- org.eclipse.jgit.events.IndexChangedEvent
-
public class IndexChangedEvent extends RepositoryEvent<IndexChangedListener>
Describes a change to one or more paths in the index file.
-
-
Constructor Summary
Constructors Constructor Description IndexChangedEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispatch(IndexChangedListener listener)Dispatch this event to the given listener.Class<IndexChangedListener>getListenerType()-
Methods inherited from class org.eclipse.jgit.events.RepositoryEvent
getRepository, setRepository, toString
-
-
-
-
Method Detail
-
getListenerType
public Class<IndexChangedListener> getListenerType()
- Specified by:
getListenerTypein classRepositoryEvent<IndexChangedListener>- Returns:
- type of listener this event dispatches to.
-
dispatch
public void dispatch(IndexChangedListener listener)
Description copied from class:RepositoryEventDispatch this event to the given listener.- Specified by:
dispatchin classRepositoryEvent<IndexChangedListener>- Parameters:
listener- listener that wants this event.
-
-