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 void
dispatch(ConfigChangedListener listener)
Dispatch this event to the given listener.Class<ConfigChangedListener>
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<ConfigChangedListener> getListenerType()
Get type of listener this event dispatches to- Specified by:
getListenerType
in classRepositoryEvent<ConfigChangedListener>
- Returns:
- type of listener this event dispatches to
-
dispatch
public void dispatch(ConfigChangedListener listener)
Dispatch this event to the given listener.- Specified by:
dispatch
in classRepositoryEvent<ConfigChangedListener>
- Parameters:
listener
- listener that wants this event.
-
-