Uses of Interface
edu.memphis.ccrg.lida.pam.PamLink

Packages that use PamLink
edu.memphis.ccrg.lida.framework.shared Contains classes related to common data structures used in the framework. 
edu.memphis.ccrg.lida.pam Contains classes related to the definition of the Perceptual Associative Memory module and its default implementation. 
edu.memphis.ccrg.lida.pam.tasks Contains classes implementing several low-level processes of the default PerceptualAssociativeMemory. 
 

Uses of PamLink in edu.memphis.ccrg.lida.framework.shared
 

Fields in edu.memphis.ccrg.lida.framework.shared declared as PamLink
protected  PamLink LinkImpl.groundingPamLink
          PamLink in PAM that grounds this Link.
 

Methods in edu.memphis.ccrg.lida.framework.shared that return PamLink
 PamLink Link.getGroundingPamLink()
          Get the grounding PamLink for this link.
 PamLink LinkImpl.getGroundingPamLink()
           
 

Methods in edu.memphis.ccrg.lida.framework.shared with parameters of type PamLink
 void Link.setGroundingPamLink(PamLink l)
          Set the grounding PamLink for this link.
 void LinkImpl.setGroundingPamLink(PamLink l)
           
 

Uses of PamLink in edu.memphis.ccrg.lida.pam
 

Classes in edu.memphis.ccrg.lida.pam that implement PamLink
 class PamLinkImpl
          Default implementation of PamLink.
 

Methods in edu.memphis.ccrg.lida.pam that return PamLink
 PamLink PerceptualAssociativeMemory.addDefaultLink(Link link)
          Adds a COPY of specified link to this PAM.
 PamLink PerceptualAssociativeMemoryImpl.addDefaultLink(Link link)
           
 

Methods in edu.memphis.ccrg.lida.pam that return types with arguments of type PamLink
 java.util.Set<PamLink> PerceptualAssociativeMemory.addDefaultLinks(java.util.Set<? extends Link> links)
          Adds a COPY of specified collection of PamLinks to this PAM.
 java.util.Set<PamLink> PerceptualAssociativeMemoryImpl.addDefaultLinks(java.util.Set<? extends Link> links)
           
 

Uses of PamLink in edu.memphis.ccrg.lida.pam.tasks
 

Constructors in edu.memphis.ccrg.lida.pam.tasks with parameters of type PamLink
AddLinkToPerceptTask(PamLink link, PerceptualAssociativeMemory pam)
          Default constructor
PropagationTask(int ticksPerRun, PamLink link, double amount, PerceptualAssociativeMemory pam)
          Default constructor.