Package jetbrains.buildServer.util
Interface ItemChangeEventListener<SOURCE,ITEM>
-
- Type Parameters:
SOURCE
- type of class that can fire this event.ITEM
- type of item that can be changed.
- All Superinterfaces:
EventListener
public interface ItemChangeEventListener<SOURCE,ITEM> extends EventListener
Listener that observes for an item.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
itemChanged(SOURCE source, ITEM old, ITEM neo)
Fired when the observed item has been changed.
-