clarion.system
Interface InterfaceHandlesNewInput

All Known Implementing Classes:
QBPNet

public interface InterfaceHandlesNewInput

This interface is implemented by classes that are capable of handling new input within CLARION.

Usage:

Any class that implements this interface will be given the "new input" during the training phase (to facilitate training) after perception has occurred, but before action decision making takes place.

Known classes implementing this interface:

Version:
6.0.4
Author:
Nick Wilson

Method Summary
 java.util.Collection<Dimension> getNewInput()
          Gets the new inputs.
 void setNewInput(java.util.Collection<Dimension> input)
          Sets the new input.
 

Method Detail

getNewInput

java.util.Collection<Dimension> getNewInput()
Gets the new inputs.

Returns:
The new input.

setNewInput

void setNewInput(java.util.Collection<Dimension> input)
Sets the new input.

Parameters:
input - The input to set as new input.