Interface BuildPromotionListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
BuildPromotionAdapter
,BuildTypesEventListener
public interface BuildPromotionListener extends EventListener
- Author:
- maxim.manuylov Date: 11.11.2009
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
buildPromotionChangesDetached(BuildPromotion buildPromotion)
Called when build promotion changes are detached, i.e.void
buildPromotionDeleted(BuildPromotion buildPromotion)
Called when build promotion was deleted (not by cleanup)
-
-
-
Method Detail
-
buildPromotionDeleted
void buildPromotionDeleted(@NotNull BuildPromotion buildPromotion)
Called when build promotion was deleted (not by cleanup)- Parameters:
buildPromotion
- build promotion- Since:
- 5.0
-
buildPromotionChangesDetached
void buildPromotionChangesDetached(@NotNull BuildPromotion buildPromotion)
Called when build promotion changes are detached, i.e. buildPromotion.isChangesDetached() starts to return true.- Parameters:
buildPromotion
- promotion with detached changes
-
-