Uses of Interface
net.ontopia.topicmaps.entry.TopicMapReferenceIF

Packages that use TopicMapReferenceIF
net.ontopia.topicmaps.core Provides interfaces for topic map objects; the topic map API for all Ontopia topic map implementations. 
net.ontopia.topicmaps.core.events Provides an event interface to the OKS where clients can receive notification about updates to topic maps. 
net.ontopia.topicmaps.db2tm The implementation of and public API to the DB2TM module for converting relational data (in CSV files or RDBMSs) to Topic Maps. 
net.ontopia.topicmaps.entry High level interfaces for locating and maintaining references to topic maps. 
net.ontopia.topicmaps.impl.rdbms Relational database implementation of the core topic map interfaces. 
net.ontopia.topicmaps.utils This package provides topic map utility classes, which are a toolkit for working with the topic map model provided by the core interfaces. 
net.ontopia.topicmaps.utils.ctm Provides support for the ISO-standardized textual Compact Topic Maps syntax (or CTM) format for topic maps. 
net.ontopia.topicmaps.utils.ltm This package provides support for the textual Linear Topic Map Notation (or LTM) format for topic maps. 
net.ontopia.topicmaps.utils.rdf This package provides support for RDF (Resource Description Framework), a topic map-like data model for metadata defined by the W3C. 
net.ontopia.topicmaps.webed.utils Utility classes for the Web Editor Framework; useful for writing Web Editor applications. 
net.ontopia.topicmaps.xml Classes for importing and exporting topic maps in the XML interchange format. 
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.core
 

Methods in net.ontopia.topicmaps.core that return TopicMapReferenceIF
 TopicMapReferenceIF TopicMapStoreIF.getReference()
          INTERNAL: Returns a topic map reference for this store.
 

Methods in net.ontopia.topicmaps.core with parameters of type TopicMapReferenceIF
 void TopicMapStoreIF.setReference(TopicMapReferenceIF reference)
          INTERNAL: Sets the topic map reference for this store.
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.core.events
 

Methods in net.ontopia.topicmaps.core.events with parameters of type TopicMapReferenceIF
static void TopicMapEvents.addTopicListener(TopicMapReferenceIF topicmapRef, TopicMapListenerIF listener)
          PUBLIC: Call this method to register a topic listener with a given topic map.
static void TopicMapEvents.removeTopicListener(TopicMapReferenceIF topicmapRef, TopicMapListenerIF listener)
          PUBLIC: Call this method to unregister a topic listener with a given topic map.
 void AbstractTopicMapListener.setReference(TopicMapReferenceIF ref)
          INTERNAL: Callback method called when listener is being registered or unregistered with a topic map reference.
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.db2tm
 

Methods in net.ontopia.topicmaps.db2tm with parameters of type TopicMapReferenceIF
 void SynchronizationTask.setTopicMapReference(TopicMapReferenceIF ref)
           
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.entry
 

Classes in net.ontopia.topicmaps.entry that implement TopicMapReferenceIF
 class AbstractOntopolyURLReference
          INTERNAL: Common abstract superclass for references from sources that support what Ontopoly needs.
 class AbstractTopicMapReference
          INTERNAL: An abstract topic map reference class that contains methods that handles the id and title properties.
 class AbstractURLTopicMapReference
          INTERNAL: An abstract topic map reference class that retrieves topic maps referenced through URLs.
 class DefaultTopicMapReference
          Deprecated. Class is now superseded by StoreFactoryReference.
 class StoreFactoryReference
          INTERNAL: A topic map reference that uses a topic map store factory to create stores.
 

Methods in net.ontopia.topicmaps.entry that return TopicMapReferenceIF
abstract  TopicMapReferenceIF AbstractOntopolyTopicMapSource.createReference(java.net.URL url, java.lang.String id, java.lang.String title, LocatorIF base_address)
           
 TopicMapReferenceIF URLTopicMapSource.createTopicMap(java.lang.String name, java.lang.String baseAddress)
           
 TopicMapReferenceIF TopicMapSourceIF.createTopicMap(java.lang.String name, java.lang.String baseAddressURI)
          PUBLIC: Creates a new topic map in the underlying source and returns a reference to the created topic map.
 TopicMapReferenceIF ResourceTopicMapSource.createTopicMap(java.lang.String name, java.lang.String baseAddress)
           
 TopicMapReferenceIF DefaultTopicMapSource.createTopicMap(java.lang.String name, java.lang.String baseAddress)
           
 TopicMapReferenceIF AbstractPathTopicMapSource.createTopicMap(java.lang.String name, java.lang.String baseAddress)
           
 TopicMapReferenceIF AbstractOntopolyTopicMapSource.createTopicMap(java.lang.String name, java.lang.String baseAddress)
           
 TopicMapReferenceIF TopicMapSourceManager.getReferenceById(java.lang.String reference_id)
          Deprecated. replaced by getReferenceByKey(String)
 TopicMapReferenceIF TopicMapSourceManager.getReferenceByKey(java.lang.String key)
           
 TopicMapReferenceIF TopicMapRepositoryIF.getReferenceByKey(java.lang.String refkey)
          PUBLIC: Gets a topic map reference by its reference key.
 

Methods in net.ontopia.topicmaps.entry that return types with arguments of type TopicMapReferenceIF
 java.util.Collection<TopicMapReferenceIF> URLTopicMapSource.getReferences()
           
 java.util.Collection<TopicMapReferenceIF> TopicMapSourceManager.getReferences()
           
 java.util.Collection<TopicMapReferenceIF> TopicMapSourceIF.getReferences()
          PUBLIC: Returns an unmodifiable collection of TopicMapReferenceIFs found by the topic map source.
 java.util.Collection<TopicMapReferenceIF> TopicMapRepositoryIF.getReferences()
          PUBLIC: Returns a collection containing all references.
 java.util.Collection<TopicMapReferenceIF> ResourceTopicMapSource.getReferences()
           
 java.util.Collection<TopicMapReferenceIF> DefaultTopicMapSource.getReferences()
           
 java.util.Collection<TopicMapReferenceIF> AbstractPathTopicMapSource.getReferences()
           
 

Methods in net.ontopia.topicmaps.entry with parameters of type TopicMapReferenceIF
 void DefaultTopicMapSource.addReference(TopicMapReferenceIF reference)
          INTERNAL: Adds the reference to the source and registers the source as the source of the reference.
 java.lang.String TopicMapSourceManager.getReferenceKey(TopicMapReferenceIF ref)
           
 java.lang.String TopicMapRepositoryIF.getReferenceKey(TopicMapReferenceIF ref)
          PUBLIC: Gets the key used to identify the reference in the repository.
 void DefaultTopicMapSource.removeReference(TopicMapReferenceIF reference)
          INTERNAL: Removes the reference from the source and deregisters the source from the reference.
 

Constructors in net.ontopia.topicmaps.entry with parameters of type TopicMapReferenceIF
DefaultTopicMapSource(TopicMapReferenceIF reference)
           
 

Constructor parameters in net.ontopia.topicmaps.entry with type arguments of type TopicMapReferenceIF
DefaultTopicMapSource(java.util.Collection<TopicMapReferenceIF> refs)
           
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.impl.rdbms
 

Classes in net.ontopia.topicmaps.impl.rdbms that implement TopicMapReferenceIF
 class RDBMSTopicMapReference
          INTERNAL: RDBMS database topic map reference.
 

Methods in net.ontopia.topicmaps.impl.rdbms that return TopicMapReferenceIF
 TopicMapReferenceIF RDBMSTopicMapSource.createTopicMap(java.lang.String name, java.lang.String baseAddress)
           
 TopicMapReferenceIF RDBMSSingleTopicMapSource.createTopicMap(java.lang.String name, java.lang.String baseAddress)
           
 TopicMapReferenceIF RDBMSPatternSingleTopicMapSource.createTopicMap(java.lang.String name, java.lang.String baseAddress)
           
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.utils
 

Classes in net.ontopia.topicmaps.utils that implement TopicMapReferenceIF
 class MergeReference
          INTERNAL: A topic map reference that uses a TopicMapRepositoryIF to retrieve a list of topic maps and create a new merged topic map from them.
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.utils.ctm
 

Classes in net.ontopia.topicmaps.utils.ctm that implement TopicMapReferenceIF
 class CTMTopicMapReference
          INTERNAL: An CTM file topic map reference.
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.utils.ltm
 

Classes in net.ontopia.topicmaps.utils.ltm that implement TopicMapReferenceIF
 class LTMTopicMapReference
          INTERNAL: An LTM file topic map reference.
 

Methods in net.ontopia.topicmaps.utils.ltm that return TopicMapReferenceIF
 TopicMapReferenceIF LTMPathTopicMapSource.createReference(java.net.URL url, java.lang.String id, java.lang.String title, LocatorIF base)
           
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.utils.rdf
 

Classes in net.ontopia.topicmaps.utils.rdf that implement TopicMapReferenceIF
 class RDFTopicMapReference
          INTERNAL: An RDF file topic map reference.
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.webed.utils
 

Methods in net.ontopia.topicmaps.webed.utils with parameters of type TopicMapReferenceIF
 java.lang.String ModelLinkGeneratorWithObjID.generate(net.ontopia.topicmaps.nav2.taglibs.logic.ContextTag contextTag, TopicMapReferenceIF tmRefObj, java.lang.String template)
           
 

Uses of TopicMapReferenceIF in net.ontopia.topicmaps.xml
 

Classes in net.ontopia.topicmaps.xml that implement TopicMapReferenceIF
 class TMXMLTopicMapReference
          INTERNAL: A TM/XML file topic map reference.
 class XTMTopicMapReference
          INTERNAL: An XTM document topic map reference.
 

Methods in net.ontopia.topicmaps.xml that return TopicMapReferenceIF
 TopicMapReferenceIF XTMPathTopicMapSource.createReference(java.net.URL url, java.lang.String id, java.lang.String title, LocatorIF base_address)
           
 TopicMapReferenceIF TMXMLPathTopicMapSource.createReference(java.net.URL url, java.lang.String id, java.lang.String title, LocatorIF base_address)
           
 



Copyright © 2000-2010 Ontopia.