Uses of Interface
edu.memphis.ccrg.lida.proceduralmemory.Scheme

Packages that use Scheme
edu.memphis.ccrg.lida.actionselection Contains classes related to Action Selection, a subsystem which selects Behaviors for execution. 
edu.memphis.ccrg.lida.proceduralmemory Contains classes related to the definition of the Procedural Memory module and its default implementation. 
 

Uses of Scheme in edu.memphis.ccrg.lida.actionselection
 

Methods in edu.memphis.ccrg.lida.actionselection that return Scheme
 Scheme Behavior.getGeneratingScheme()
          Gets generating scheme.
 Scheme BehaviorImpl.getGeneratingScheme()
           
 

Methods in edu.memphis.ccrg.lida.actionselection with parameters of type Scheme
 void Behavior.setGeneratingScheme(Scheme s)
          Sets generating scheme.
 void BehaviorImpl.setGeneratingScheme(Scheme s)
           
 

Uses of Scheme in edu.memphis.ccrg.lida.proceduralmemory
 

Classes in edu.memphis.ccrg.lida.proceduralmemory that implement Scheme
 class SchemeImpl
          Default implementation of Scheme
 

Methods in edu.memphis.ccrg.lida.proceduralmemory with parameters of type Scheme
 void ProceduralMemoryImpl.addScheme(Scheme scheme)
           
 void ProceduralMemory.addScheme(Scheme s)
          Adds specified scheme to this ProceduralMemory.
 boolean ProceduralMemoryImpl.containsScheme(Scheme s)
           
 boolean ProceduralMemory.containsScheme(Scheme s)
          Returns whether this procedural memory contains specified scheme.
 void ProceduralMemoryImpl.createInstantiation(Scheme s)
           
 void ProceduralMemory.createInstantiation(Scheme s)
          Instantiates specified scheme.
 void ProceduralMemoryImpl.removeScheme(Scheme scheme)
           
 void ProceduralMemory.removeScheme(Scheme s)
          Removes specified Scheme.
 

Method parameters in edu.memphis.ccrg.lida.proceduralmemory with type arguments of type Scheme
 void ProceduralMemoryImpl.addSchemes(java.util.Collection<Scheme> schemes)
           
 void ProceduralMemory.addSchemes(java.util.Collection<Scheme> schemes)
          Adds specified schemes to this procedural memory.