Uses of Interface
org.tm4j.topicmap.Association

Packages that use Association
org.tm4j.tmapi.core An implementation of the draft TMAPI interfaces. 
org.tm4j.tolog DEPRECATED 
org.tm4j.topicmap Provides the core interfaces of the TM4J Topic Map Engine. 
org.tm4j.topicmap.unified Implements a TM4J back-end which merges topic maps from one or more other back-end implementations dynamically. 
org.tm4j.topicmap.utils Contains utility classes providing additional functionality for the TM4J API. 
org.tm4j.topicmap.utils.extractors Provides reusable and composable functions for retrieving information from a variety of topic map constructs. 
 

Uses of Association in org.tm4j.tmapi.core
 

Methods in org.tm4j.tmapi.core that return Association
 Association TMAPIAssociationImpl.getWrapped()
           
 

Constructors in org.tm4j.tmapi.core with parameters of type Association
TMAPIAssociationImpl(Association obj, TMAPITopicMapImpl tm)
           
 

Uses of Association in org.tm4j.tolog
 

Methods in org.tm4j.tolog with parameters of type Association
protected  java.util.List QueryEvaluator.getPlayerRolePairs(Association a)
          Deprecated.  
 

Uses of Association in org.tm4j.topicmap
 

Methods in org.tm4j.topicmap that return Association
 Association TopicMapFactoryBase.copy(Association src)
           
 Association TopicMapFactoryBase.copy(Association src, boolean deep)
           
 Association TopicMapFactoryBase.copy(Association src, boolean deep, java.lang.String idPrefix, java.lang.String idSuffix)
           
 Association TopicMapFactoryBase.copy(Association src, boolean deep, java.lang.String idPrefix, java.lang.String idSuffix, java.util.HashMap copied)
           
 Association Member.getParent()
          Returns the association to which the Member belongs.
 Association TopicMapFactory.copy(Association src)
           
 Association TopicMapFactory.copy(Association src, boolean deep)
          Creates a copy of src A deep copy of src returns an Association in which the type and all child Members are deep copied.
 Association TopicMap.createAssociation(java.lang.String id)
          Creates a new Association in this TopicMap.
 Association TopicMap.createAssociation(java.lang.String id, Locator resourceLocator, Topic type, Topic[] themes)
          Creates a new Association in this topic map
 

Methods in org.tm4j.topicmap with parameters of type Association
 Association TopicMapFactoryBase.copy(Association src)
           
 Member TopicMapFactoryBase.copy(Member src, Association destAssoc)
           
 Association TopicMapFactoryBase.copy(Association src, boolean deep)
           
 Member TopicMapFactoryBase.copy(Member src, Association destAssoc, boolean deep)
           
 Association TopicMapFactoryBase.copy(Association src, boolean deep, java.lang.String idPrefix, java.lang.String idSuffix)
           
 Association TopicMapFactoryBase.copy(Association src, boolean deep, java.lang.String idPrefix, java.lang.String idSuffix, java.util.HashMap copied)
           
 Member TopicMapFactoryBase.copy(Member src, Association destParent, boolean deep, java.lang.String idPrefix, java.lang.String idSuffix)
           
 Association TopicMapFactory.copy(Association src)
           
 Member TopicMapFactory.copy(Member src, Association destAssoc)
           
 Association TopicMapFactory.copy(Association src, boolean deep)
          Creates a copy of src A deep copy of src returns an Association in which the type and all child Members are deep copied.
 Member TopicMapFactory.copy(Member src, Association destAssoc, boolean deep)
          Creates a copy of src as a new child of destAssoc A deep copy of src returns a Member in which the roleSpec and players are all deep copied.
 java.util.Collection TopicMapUtils.getMembersOfType(Association assoc, Locator subjectOrIndicator)
          Returns the set of Members of the specified Association for which the subject or subject indicator of the roleSpec matches the specified locator
 java.util.Collection TopicMapUtils.getPlayersOfRole(Association assoc, Topic roleSpec)
          Returns the set of topics which are players in Members of the specified association where the Member plays role defined by roleSpec.
 

Uses of Association in org.tm4j.topicmap.unified
 

Classes in org.tm4j.topicmap.unified that implement Association
 class UnifiedAssociation
          Wrapper class around an object implementing the Association interface.
 

Methods in org.tm4j.topicmap.unified that return Association
 Association UnifiedMember.getParent()
           
 Association UnifiedTopicMap.createAssociation(java.lang.String id)
           
 Association UnifiedTopicMap.createAssociation(java.lang.String id, Locator resourceLocator, Topic type, Topic[] themes)
           
 

Methods in org.tm4j.topicmap.unified with parameters of type Association
 void UnifiedMember.setParent(Association parent)
           
 void UnifiedTopicMap.removeAssociation(Association assoc)
           
 

Constructors in org.tm4j.topicmap.unified with parameters of type Association
UnifiedAssociation(UnifiedTopicMap tm, Association base)
           
 

Uses of Association in org.tm4j.topicmap.utils
 

Methods in org.tm4j.topicmap.utils that return Association
 Association TopicMapCopier.copy(Association src, boolean deep, java.lang.String idPrefix, java.lang.String idSuffix, java.util.HashMap copied)
           
 

Methods in org.tm4j.topicmap.utils with parameters of type Association
 boolean WalkerHandlerAdapter.startAssociation(Association assoc)
           
 void WalkerHandlerAdapter.endAssociation(Association assoc)
           
 boolean TypeInstanceAssociationFilter.startAssociation(Association a)
           
 void TopicMapFragment.addAssociation(Association src, int depth)
           
 Association TopicMapCopier.copy(Association src, boolean deep, java.lang.String idPrefix, java.lang.String idSuffix, java.util.HashMap copied)
           
protected  Member TopicMapCopier.copy(Member src, Association destParent, boolean deep, java.lang.String idPrefix, java.lang.String idSuffix, java.util.HashMap copied)
           
 boolean WalkerFilterAdapter.startAssociation(Association assoc)
           
 void WalkerFilterAdapter.endAssociation(Association assoc)
           
 boolean ScopeWalkerFilter.startAssociation(Association assoc)
           
static java.lang.String AssociationUtils.getSignature(Association a)
          Returns a string signature for the association.
static void AssociationUtils.removeDuplicateRolePlayers(Association a)
           
static java.util.Collection AssociationUtils.getPlayers(Association a)
           
 boolean XTMWriter.startAssociation(Association assoc)
           
 void XTMWriter.endAssociation(Association assoc)
           
 boolean WalkerHandler.startAssociation(Association assoc)
           
 void WalkerHandler.endAssociation(Association assoc)
           
 void TopicMapWalker.walk(Association assoc)
           
 

Uses of Association in org.tm4j.topicmap.utils.extractors
 

Methods in org.tm4j.topicmap.utils.extractors with parameters of type Association
 java.lang.String AssociationNameExtractor.getName(Association in, Topic dominantPlayer)