Exemplo n.º 1
0
 void callTagUpdatedListener(SystemTagInventory old, SystemTagInventory newTag) {
   for (SystemTagLifeCycleListener ext : lifeCycleListeners) {
     ext.tagUpdated(old, newTag);
   }
 }
Exemplo n.º 2
0
 void callTagDeletedListener(SystemTagInventory tag) {
   for (SystemTagLifeCycleListener ext : lifeCycleListeners) {
     ext.tagDeleted(tag);
   }
 }