com.googlecode.android_scripting.trigger
Interface TriggerRepository.TriggerRepositoryObserver

All Known Implementing Classes:
EventGenerationControllingObserver
Enclosing class:
TriggerRepository

public static interface TriggerRepository.TriggerRepositoryObserver

An interface for objects that are notified when a trigger is added to the repository.


Method Summary
 void onPut(Trigger trigger)
          Invoked just before the trigger is added to the repository.
 void onRemove(Trigger trigger)
          Invoked just after the trigger has been removed from the repository.
 

Method Detail

onPut

void onPut(Trigger trigger)
Invoked just before the trigger is added to the repository.

Parameters:
trigger - The trigger about to be added to the repository.

onRemove

void onRemove(Trigger trigger)
Invoked just after the trigger has been removed from the repository.

Parameters:
trigger - The trigger that has just been removed from the repository.