Interface IPerceptGenerator
- 
- All Superinterfaces:
- IEnvironmentListener,- IPropertyObject
 - All Known Implementing Classes:
- DefaultVisionGenerator,- DefaultVisionGenerator
 
 public interface IPerceptGenerator extends IEnvironmentListener, IPropertyObject Interface for percept generators. Percept generators listen of the environment for interesting events and process them to percepts for components. A percept is meant as a piece of information that is of interest for an component.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcomponentAdded(IComponentDescription component, IEnvironmentSpace space)Called when an component was added to the space.voidcomponentRemoved(IComponentDescription component, IEnvironmentSpace space)Called when an component was remove from the space.- 
Methods inherited from interface jadex.extension.envsupport.environment.IEnvironmentListenerdispatchEnvironmentEvent
 - 
Methods inherited from interface jadex.commons.IPropertyObjectgetProperty, getPropertyNames, hasProperty, setProperty
 
- 
 
- 
- 
- 
Method Detail- 
componentAddedvoid componentAdded(IComponentDescription component, IEnvironmentSpace space) Called when an component was added to the space.- Parameters:
- component- The component identifier.
- space- The space.
 
 - 
componentRemovedvoid componentRemoved(IComponentDescription component, IEnvironmentSpace space) Called when an component was remove from the space.- Parameters:
- component- The component identifier.
- space- The space.
 
 
- 
 
-