Class DfsPacksChangedEvent
- java.lang.Object
-
- org.eclipse.jgit.events.RepositoryEvent<DfsPacksChangedListener>
-
- org.eclipse.jgit.internal.storage.dfs.DfsPacksChangedEvent
-
public class DfsPacksChangedEvent extends RepositoryEvent<DfsPacksChangedListener>
Describes a change to the list of packs in aDfsRepository
.
-
-
Constructor Summary
Constructors Constructor Description DfsPacksChangedEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispatch(DfsPacksChangedListener listener)
Dispatch this event to the given listener.Class<DfsPacksChangedListener>
getListenerType()
Get type of listener this event dispatches to-
Methods inherited from class org.eclipse.jgit.events.RepositoryEvent
getRepository, setRepository, toString
-
-
-
-
Method Detail
-
getListenerType
public Class<DfsPacksChangedListener> getListenerType()
Get type of listener this event dispatches to- Specified by:
getListenerType
in classRepositoryEvent<DfsPacksChangedListener>
- Returns:
- type of listener this event dispatches to
-
dispatch
public void dispatch(DfsPacksChangedListener listener)
Dispatch this event to the given listener.- Specified by:
dispatch
in classRepositoryEvent<DfsPacksChangedListener>
- Parameters:
listener
- listener that wants this event.
-
-