Uses of Interface
net.ontopia.topicmaps.core.VariantNameIF

Packages that use VariantNameIF
net.ontopia.infoset.fulltext.topicmaps Collection of classes for indexing topic maps. 
net.ontopia.topicmaps.core Provides interfaces for topic map objects; the topic map API for all Ontopia topic map implementations. 
net.ontopia.topicmaps.core.index Provides interfaces for the engine's index system; the API for Ontopia topic map indexes. 
net.ontopia.topicmaps.impl.basic The in-memory implementation of the core topic map interfaces. 
net.ontopia.topicmaps.impl.rdbms Relational database implementation of the core topic map interfaces. 
net.ontopia.topicmaps.impl.rdbms.index Index classes for use with the rdbms implementation. 
net.ontopia.topicmaps.impl.tmapi2   
net.ontopia.topicmaps.impl.utils INTERNAL: Classes that are used by many implementations. 
net.ontopia.topicmaps.schema.impl.osl The classes and interfaces used to represent constructs in the Ontopia Schema Language. 
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.deciders Provides DeciderIFs which are used by the Navigator. 
net.ontopia.topicmaps.xml Classes for importing and exporting topic maps in the XML interchange format. 
 

Uses of VariantNameIF in net.ontopia.infoset.fulltext.topicmaps
 

Methods in net.ontopia.infoset.fulltext.topicmaps with parameters of type VariantNameIF
 DocumentIF TopicMapDocumentGeneratorIF.generate(VariantNameIF variant)
          INTERNAL: Generate a document for the given variant name.
 DocumentIF DefaultTopicMapDocumentGenerator.generate(VariantNameIF variant)
           
 void DefaultTopicMapIndexer.index(VariantNameIF variant)
          INTERNAL: Indexes the given variant name.
 

Uses of VariantNameIF in net.ontopia.topicmaps.core
 

Methods in net.ontopia.topicmaps.core that return VariantNameIF
 VariantNameIF TopicMapBuilderIF.makeVariantName(TopicNameIF name, LocatorIF locator)
          Deprecated. Use makeVariantName(TopicNameIF, LocatorIF, Collection)
 VariantNameIF TopicMapBuilderIF.makeVariantName(TopicNameIF name, LocatorIF locator, java.util.Collection<TopicIF> scope)
          PUBLIC: Makes a new variant name with the given locator for the specified topic name in the given scope.
 VariantNameIF TopicMapBuilderIF.makeVariantName(TopicNameIF name, java.io.Reader value, long length, LocatorIF datatype)
          Deprecated. Use makeVariantName(TopicNameIF, Reader, long, LocatorIF, Collection)
 VariantNameIF TopicMapBuilderIF.makeVariantName(TopicNameIF name, java.io.Reader value, long length, LocatorIF datatype, java.util.Collection<TopicIF> scope)
          PUBLIC: Makes a new variant name with the specified name value reader and datatype for the specified topic name in the given scope.
 VariantNameIF TopicMapBuilderIF.makeVariantName(TopicNameIF name, java.lang.String value)
          Deprecated. Use makeVariantName(TopicNameIF, String, Collection)
 VariantNameIF TopicMapBuilderIF.makeVariantName(TopicNameIF name, java.lang.String value, java.util.Collection<TopicIF> scope)
          PUBLIC: Makes a new variant name with the specified name value for the specified topic name in the given scope.
 VariantNameIF TopicMapBuilderIF.makeVariantName(TopicNameIF name, java.lang.String value, LocatorIF datatype)
          Deprecated. Use makeVariantName(TopicNameIF, String, LocatorIF, Collection)
 VariantNameIF TopicMapBuilderIF.makeVariantName(TopicNameIF name, java.lang.String value, LocatorIF datatype, java.util.Collection<TopicIF> scope)
          PUBLIC: Makes a new variant name with the specified name value and datatype for the specified name in the given scope.
 

Methods in net.ontopia.topicmaps.core that return types with arguments of type VariantNameIF
 java.util.Collection<VariantNameIF> TopicNameIF.getVariants()
          PUBLIC: Gets the variant names of the topic named by this topic name.
 

Uses of VariantNameIF in net.ontopia.topicmaps.core.index
 

Methods in net.ontopia.topicmaps.core.index that return types with arguments of type VariantNameIF
 java.util.Collection<VariantNameIF> NameIndexIF.getVariants(java.lang.String value)
          INTERNAL: Gets all variants that have the specified value independent of datatype.
 java.util.Collection<VariantNameIF> NameIndexIF.getVariants(java.lang.String value, LocatorIF datatype)
          INTERNAL: Gets all variants that have the specified value and datatype.
 java.util.Collection<VariantNameIF> ScopeIndexIF.getVariants(TopicIF theme)
          PUBLIC: Gets all variant names that have the given topic in their direct scope.
 

Uses of VariantNameIF in net.ontopia.topicmaps.impl.basic
 

Classes in net.ontopia.topicmaps.impl.basic that implement VariantNameIF
 class VariantName
          INTERNAL: The basic variant name implementation.
 

Fields in net.ontopia.topicmaps.impl.basic with type parameters of type VariantNameIF
protected  java.util.Set<VariantNameIF> TopicName.variants
           
 

Methods in net.ontopia.topicmaps.impl.basic that return VariantNameIF
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, LocatorIF locator)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, LocatorIF locator, java.util.Collection<TopicIF> scope)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.io.Reader value, long length, LocatorIF datatype)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.io.Reader value, long length, LocatorIF datatype, java.util.Collection<TopicIF> scope)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.lang.String variant_name)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.lang.String value, java.util.Collection<TopicIF> scope)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.lang.String variant_name, LocatorIF datatype)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.lang.String value, LocatorIF datatype, java.util.Collection<TopicIF> scope)
           
 

Methods in net.ontopia.topicmaps.impl.basic that return types with arguments of type VariantNameIF
 java.util.Collection<VariantNameIF> TopicName.getVariants()
           
 

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

Classes in net.ontopia.topicmaps.impl.rdbms that implement VariantNameIF
 class ReadOnlyVariantName
          INTERNAL: The read-only rdbms variant name implementation.
 

Methods in net.ontopia.topicmaps.impl.rdbms that return VariantNameIF
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, LocatorIF locator)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, LocatorIF locator, java.util.Collection scope)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.io.Reader value, long length, LocatorIF datatype)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.io.Reader value, long length, LocatorIF datatype, java.util.Collection scope)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.lang.String variant_name)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.lang.String value, java.util.Collection scope)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.lang.String value, LocatorIF datatype)
           
 VariantNameIF TopicMapBuilder.makeVariantName(TopicNameIF name, java.lang.String value, LocatorIF datatype, java.util.Collection scope)
           
 

Methods in net.ontopia.topicmaps.impl.rdbms that return types with arguments of type VariantNameIF
 java.util.Collection<VariantNameIF> TopicName.getVariants()
           
 

Uses of VariantNameIF in net.ontopia.topicmaps.impl.rdbms.index
 

Methods in net.ontopia.topicmaps.impl.rdbms.index that return types with arguments of type VariantNameIF
 java.util.Collection<VariantNameIF> NameIndex.getVariants(java.lang.String value)
           
 java.util.Collection<VariantNameIF> NameIndex.getVariants(java.lang.String value, LocatorIF datatype)
           
 java.util.Collection<VariantNameIF> ScopeIndex.getVariants(TopicIF theme)
           
 

Uses of VariantNameIF in net.ontopia.topicmaps.impl.tmapi2
 

Methods in net.ontopia.topicmaps.impl.tmapi2 that return VariantNameIF
 VariantNameIF VariantImpl.getWrapped()
           
 VariantNameIF TopicMapImpl.unwrapVariant(org.tmapi.core.Variant variant)
           
 

Methods in net.ontopia.topicmaps.impl.tmapi2 with parameters of type VariantNameIF
 VariantImpl TopicMapImpl.wrapVariant(VariantNameIF variant)
           
 

Constructors in net.ontopia.topicmaps.impl.tmapi2 with parameters of type VariantNameIF
VariantImpl(TopicMapImpl topicMap, NameImpl parent, VariantNameIF variant)
           
 

Uses of VariantNameIF in net.ontopia.topicmaps.impl.utils
 

Classes in net.ontopia.topicmaps.impl.utils that implement VariantNameIF
 class SnapshotVariantName
          INTERNAL:
 

Fields in net.ontopia.topicmaps.impl.utils with type parameters of type VariantNameIF
protected  java.util.Collection<VariantNameIF> SnapshotTopicName.variants
           
 

Methods in net.ontopia.topicmaps.impl.utils that return VariantNameIF
static VariantNameIF SnapshotVariantName.makeSnapshot(VariantNameIF original, int snapshotType, java.util.Map<TMObjectIF,SnapshotTMObject> processed)
           
 

Methods in net.ontopia.topicmaps.impl.utils that return types with arguments of type VariantNameIF
 java.util.Collection<VariantNameIF> SnapshotTopicName.getVariants()
           
 

Methods in net.ontopia.topicmaps.impl.utils with parameters of type VariantNameIF
static VariantNameIF SnapshotVariantName.makeSnapshot(VariantNameIF original, int snapshotType, java.util.Map<TMObjectIF,SnapshotTMObject> processed)
           
static java.lang.String ObjectStrings.toString(java.lang.String impl, VariantNameIF variant)
           
 

Uses of VariantNameIF in net.ontopia.topicmaps.schema.impl.osl
 

Methods in net.ontopia.topicmaps.schema.impl.osl with parameters of type VariantNameIF
protected  void SchemaValidator.validate(VariantNameIF variant, VariantConstraint constraint)
           
 

Uses of VariantNameIF in net.ontopia.topicmaps.utils
 

Methods in net.ontopia.topicmaps.utils that return VariantNameIF
static VariantNameIF CopyUtils.copyVariant(TopicNameIF target, VariantNameIF source)
          INTERNAL: Copies the variant from the source topic to the target topic.
 

Methods in net.ontopia.topicmaps.utils with parameters of type VariantNameIF
static VariantNameIF CopyUtils.copyVariant(TopicNameIF target, VariantNameIF source)
          INTERNAL: Copies the variant from the source topic to the target topic.
static void CopyUtils.copyVariantData(VariantNameIF target, VariantNameIF source)
          INTERNAL: Copies the variant value and datatype from the source topic to the target topic.
protected static java.lang.String KeyGenerator.makeDataKey(VariantNameIF variant)
           
static java.lang.String KeyGenerator.makeVariantKey(VariantNameIF vn)
          PUBLIC: Makes a key for a variant name.
static void MergeUtils.mergeInto(VariantNameIF target, VariantNameIF source)
          PUBLIC: Merges the source variant into the target variant.
 

Uses of VariantNameIF in net.ontopia.topicmaps.utils.deciders
 

Methods in net.ontopia.topicmaps.utils.deciders with parameters of type VariantNameIF
 boolean TMExporterDecider.ok(VariantNameIF variantName)
          Accepts or rejects a VariantNameIF
 

Uses of VariantNameIF in net.ontopia.topicmaps.xml
 

Methods in net.ontopia.topicmaps.xml with parameters of type VariantNameIF
protected  void XTMTopicMapExporter.writeParameters(VariantNameIF variant, org.xml.sax.DocumentHandler dh)
           
protected  void XTMTopicMapExporter.writeVariantName(VariantNameIF variant, org.xml.sax.DocumentHandler dh)
           
 



Copyright © 2000-2012 Ontopia.