Uses of Class
edu.memphis.ccrg.lida.framework.shared.ExtendedId

Packages that use ExtendedId
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. 
 

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

Methods in edu.memphis.ccrg.lida.framework.shared that return ExtendedId
 ExtendedId LinkImpl.getExtendedId()
           
 ExtendedId Linkable.getExtendedId()
          Gets extendedId.
 ExtendedId NodeImpl.getExtendedId()
           
 

Methods in edu.memphis.ccrg.lida.framework.shared with parameters of type ExtendedId
 Link NodeStructure.addDefaultLink(int idSource, ExtendedId idSink, LinkCategory type, double activation, double removalThreshold)
          Creates and adds a new Link with specified attributes.
 Link NodeStructureImpl.addDefaultLink(int sourceId, ExtendedId sinkId, LinkCategory category, double activation, double removalThreshold)
           
 Link UnmodifiableNodeStructureImpl.addDefaultLink(int idSource, ExtendedId idSink, LinkCategory type, double activation, double removalThreshold)
           
 boolean NodeStructure.containsLink(ExtendedId id)
          Returns whether this NodeStructure contains Link with specified ExtendedId.
 boolean NodeStructureImpl.containsLink(ExtendedId id)
           
 boolean UnmodifiableNodeStructureImpl.containsLink(ExtendedId id)
           
 boolean NodeStructure.containsLinkable(ExtendedId id)
          Returns whether this NodeStructure contains Linkable with specified ExtendedId.
 boolean NodeStructureImpl.containsLinkable(ExtendedId id)
           
 boolean UnmodifiableNodeStructureImpl.containsLinkable(ExtendedId id)
           
 boolean NodeStructure.containsNode(ExtendedId id)
          Returns whether this NodeStructure contains Node with specified ExtendedId.
 boolean NodeStructureImpl.containsNode(ExtendedId id)
           
 boolean UnmodifiableNodeStructureImpl.containsNode(ExtendedId id)
           
 Link NodeStructure.getLink(ExtendedId ids)
          Gets Link with specified ExtendedId if present.
 Link NodeStructureImpl.getLink(ExtendedId ids)
           
 Link UnmodifiableNodeStructureImpl.getLink(ExtendedId ids)
           
 Linkable NodeStructure.getLinkable(ExtendedId eid)
          Gets Linkable with specified ExtendedId
 Linkable NodeStructureImpl.getLinkable(ExtendedId ids)
           
 Linkable UnmodifiableNodeStructureImpl.getLinkable(ExtendedId eid)
           
 Node NodeStructure.getNode(ExtendedId eid)
          Returns a copy of the node in this nodestructure with specified ExtendedId
 Node NodeStructureImpl.getNode(ExtendedId id)
           
 Node UnmodifiableNodeStructureImpl.getNode(ExtendedId eid)
           
 void NodeStructure.removeLinkable(ExtendedId id)
          Removes Linkable with specified ExtendedId if present.
 void NodeStructureImpl.removeLinkable(ExtendedId id)
           
 void UnmodifiableNodeStructureImpl.removeLinkable(ExtendedId id)
           
 void NodeImpl.setExtendedId(ExtendedId eid)
          Convenience method to set Node's ExtendedId.
 

Constructors in edu.memphis.ccrg.lida.framework.shared with parameters of type ExtendedId
ExtendedId(int sourceNodeId, ExtendedId sinkId, int categoryId)
          Constructs an ExtendedId for a Link.
 

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

Methods in edu.memphis.ccrg.lida.pam with parameters of type ExtendedId
 boolean PerceptualAssociativeMemory.containsLink(ExtendedId id)
          Contains link.
 boolean PerceptualAssociativeMemoryImpl.containsLink(ExtendedId id)
           
 boolean PerceptualAssociativeMemory.containsNode(ExtendedId id)
          Contains node.
 boolean PerceptualAssociativeMemoryImpl.containsNode(ExtendedId id)
           
 Link PerceptualAssociativeMemory.getLink(ExtendedId id)
           
 Link PerceptualAssociativeMemoryImpl.getLink(ExtendedId eid)
           
 Node PerceptualAssociativeMemory.getNode(ExtendedId id)
          Returns the PamNode with specified ExtendedId or null
 Node PerceptualAssociativeMemoryImpl.getNode(ExtendedId eid)