Uses of Interface
org.tm4j.topicmap.utils.TopicMapBuilder

Packages that use TopicMapBuilder
org.tm4j.topicmap Provides the core interfaces of the TM4J Topic Map Engine. 
org.tm4j.topicmap.source Provides an abstract representation sources of TopicMaps and an implementation for serialized TopicMaps 
org.tm4j.topicmap.utils Contains utility classes providing additional functionality for the TM4J API. 
 

Uses of TopicMapBuilder in org.tm4j.topicmap
 

Methods in org.tm4j.topicmap that return TopicMapBuilder
 TopicMapBuilder TopicMapProviderBase.getTopicMapBuilder(java.lang.String notation)
           
 TopicMapBuilder TopicMapProvider.getTopicMapBuilder(java.lang.String notation)
          Returns a TopicMapBuilder for building topic maps for the specified notation.
 

Methods in org.tm4j.topicmap with parameters of type TopicMapBuilder
 TopicMap TopicMapProviderBase.addTopicMap(java.io.InputStream srcStream, Locator baseLocator, TopicMap existingTopicMap, TopicMapBuilder builder)
          Deprecated. from 0.9.0 use TopicMapSourceSupport.addTopicMap(TopicMapSource, TopicMap)
 TopicMap TopicMapProviderBase.addTopicMap(java.io.InputStream srcStream, Locator baseLocator, TopicMap existingTopicMap, Topic[] addedThemes, TopicMapBuilder builder)
          Imports a topic map in XTM or LTM syntax into the data store managed by this TopicMapProvider.
 TopicMap TopicMapProvider.addTopicMap(java.io.InputStream src, Locator baseLocator, TopicMap existingTopicMap, TopicMapBuilder builder)
          Deprecated. use addTopicMap(TopicMapSource source, TopicMap existing) instead
 

Uses of TopicMapBuilder in org.tm4j.topicmap.source
 

Constructors in org.tm4j.topicmap.source with parameters of type TopicMapBuilder
SerializedTopicMapSource(java.io.File file, TopicMapBuilder builder)
          Creates a SerializedTopicMapSource representing a file specified by the given File Object.
SerializedTopicMapSource(java.lang.String fileName, TopicMapBuilder builder)
          Creates a SerializedTopicMapSource representing a file specified by its name.
SerializedTopicMapSource(java.io.File file, Locator base, TopicMapBuilder builder)
          Creates a SerializedTopicMapSource representing a file specified by the given File Object.
SerializedTopicMapSource(java.io.Reader reader, Locator base, TopicMapBuilder builder)
          Creates a SerializedTopicMapSource representing the given Reader
SerializedTopicMapSource(java.lang.String fileName, Locator base, TopicMapBuilder builder)
          Creates a SerializedTopicMapSource representing a file identified by the given fileName
SerializedTopicMapSource(java.io.InputStream stream, Locator base, TopicMapBuilder builder)
          Creates a SerializedTopicMapSource representing the given InputStream
 

Uses of TopicMapBuilder in org.tm4j.topicmap.utils
 

Classes in org.tm4j.topicmap.utils that implement TopicMapBuilder
 class LTMBuilder
           
 class XTMBuilder
          Implementation of the TopicMapBuilder interface which supports the parsing of topic map information from XML files conforming to the XTM 1.0 DTD and specification.