Interface EntityWatchListener


  • public interface EntityWatchListener
    A listener to be register at Entities and to get informed about additions and removals. Note that this listener is intended for notification only. There is no intervention possible to prevent additions/removals.
    Author:
    IIT GmbH, Bremen/Germany, Copyright (c) 2000-2002, All Rights Reserved
    • Method Detail

      • entityAdded

        void entityAdded​(Entity parent,
                         Entity entity)
        Called after the entity has been added.
        Parameters:
        parent - parent.
        entity - new entity.
      • entityRemoved

        void entityRemoved​(Entity parent,
                           Entity entity)
        Called after the entity has been removed.
        Parameters:
        parent - parent.
        entity - removed entity.