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