Uses of Interface
net.ontopia.topicmaps.core.TopicMapIF
-
Packages that use TopicMapIF Package Description net.ontopia.infoset.content net.ontopia.infoset.fulltext.impl.rdbms The RDBMS fulltext integration.net.ontopia.infoset.fulltext.topicmaps Collection of classes for indexing topic maps.net.ontopia.topicmaps.classify To classify content, use the SimpleClassifier class.net.ontopia.topicmaps.cmdlineutils Provides a collection of command-line utilities for working with topic maps.net.ontopia.topicmaps.cmdlineutils.sanity net.ontopia.topicmaps.cmdlineutils.statistics net.ontopia.topicmaps.core Provides interfaces for topic map objects; the topic map API for all Ontopia topic map implementations.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.basic The in-memory implementation of the core topic map interfaces.net.ontopia.topicmaps.impl.basic.index Index classes for use with the basic implementation.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.remote net.ontopia.topicmaps.impl.tmapi2 net.ontopia.topicmaps.impl.utils INTERNAL: Classes that are used by many implementations.net.ontopia.topicmaps.nav.context Contains the classes that implement the user context filter in the Navigator Framework.net.ontopia.topicmaps.nav2.core Provides interfaces for the Navigator Tag Libraries and Framework.net.ontopia.topicmaps.nav2.impl.basic The basic implementation of the Navigator core interfaces.net.ontopia.topicmaps.nav2.portlets.pojos net.ontopia.topicmaps.nav2.realm net.ontopia.topicmaps.nav2.servlets This package contains the servlet classes used by Ontopia's navigator framework.net.ontopia.topicmaps.nav2.taglibs.logic Logic tags, which define the execution context, modify the context, and control the flow of execution.net.ontopia.topicmaps.nav2.utils Provides utility classes for the Navigator Tag Libraries and Framework.net.ontopia.topicmaps.query.core Contains the interfaces through which interaction with query processors, queries, and query results are done.net.ontopia.topicmaps.query.impl.basic Contains the in-memory implementation of the query language.net.ontopia.topicmaps.query.impl.rdbms Contains the rdbms implementation of the query language.net.ontopia.topicmaps.query.impl.utils Code shared between query implementations.net.ontopia.topicmaps.query.parser Contains the code that parses tolog queries.net.ontopia.topicmaps.query.spi Provides a set of service provider interfaces for adding new predicates to the tolog query language.net.ontopia.topicmaps.query.utils This package provides query utility classes.net.ontopia.topicmaps.rest net.ontopia.topicmaps.rest.converters net.ontopia.topicmaps.rest.core net.ontopia.topicmaps.rest.model.mixin net.ontopia.topicmaps.rest.resources net.ontopia.topicmaps.rest.utils net.ontopia.topicmaps.rest.v1 net.ontopia.topicmaps.rest.v1.association net.ontopia.topicmaps.rest.v1.name net.ontopia.topicmaps.rest.v1.occurrence net.ontopia.topicmaps.rest.v1.query net.ontopia.topicmaps.rest.v1.role net.ontopia.topicmaps.rest.v1.scoped net.ontopia.topicmaps.rest.v1.topic net.ontopia.topicmaps.rest.v1.topicmap net.ontopia.topicmaps.rest.v1.variant 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.jtm This package provides support for the JSON Topic Map Notation (or JTM) 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.utils.tmprefs net.ontopia.topicmaps.utils.tmrap net.ontopia.topicmaps.utils.xfml net.ontopia.topicmaps.viz net.ontopia.topicmaps.xml Classes for importing and exporting topic maps in the XML interchange format.ontopoly.conversion ontopoly.model -
-
Uses of TopicMapIF in net.ontopia.infoset.content
Methods in net.ontopia.infoset.content with parameters of type TopicMapIF Modifier and Type Method Description protected ContentStoreIFContentStoreServlet. getContentStore(TopicMapIF tm, javax.servlet.ServletContext ctxt)static ContentStoreIFContentStoreUtils. getContentStore(TopicMapIF topicmap, Map<?,?> properties)Returns a content store for content stored in the given topic map.static ContentStoreIFInMemoryContentStore. getInstance(TopicMapIF topicmap)static ContentStoreIFJDBCContentStore. getInstance(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.infoset.fulltext.impl.rdbms
Methods in net.ontopia.infoset.fulltext.impl.rdbms with parameters of type TopicMapIF Modifier and Type Method Description protected Object[]RDBMSSearcher. getParameters(String query, TopicMapIF topicmap)INTERNAL: Override this method if the parameters to be used by the query is different from the default.Constructors in net.ontopia.infoset.fulltext.impl.rdbms with parameters of type TopicMapIF Constructor Description RDBMSSearcher(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.infoset.fulltext.topicmaps
Fields in net.ontopia.infoset.fulltext.topicmaps declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFTopicMapIteratorGenerator. topicmapprotected TopicMapIFTopicMapSearchResult. topicmapMethods in net.ontopia.infoset.fulltext.topicmaps that return TopicMapIF Modifier and Type Method Description TopicMapIFTopicMapIteratorGenerator. getTopicMap()INTERNAL: Gets the topic map that is to be iterated.Methods in net.ontopia.infoset.fulltext.topicmaps with parameters of type TopicMapIF Modifier and Type Method Description DocumentIFDefaultTopicMapDocumentGenerator. generate(TopicMapIF topicmap)DocumentIFTopicMapDocumentGeneratorIF. generate(TopicMapIF topicmap)INTERNAL: Generate a document for the given topic map.voidTopicMapIteratorGenerator. setTopicMap(TopicMapIF topicmap)INTERNAL: Sets the topic map that is to be iterated.Constructors in net.ontopia.infoset.fulltext.topicmaps with parameters of type TopicMapIF Constructor Description TopicMapIteratorGenerator(TopicMapIF topicmap, IndexerIF indexer, TopicMapDocumentGeneratorIF docgen)TopicMapSearchResult(TopicMapIF topicmap, SearchResultIF result) -
Uses of TopicMapIF in net.ontopia.topicmaps.classify
Methods in net.ontopia.topicmaps.classify with parameters of type TopicMapIF Modifier and Type Method Description static TermDatabaseSimpleClassifier. classify(byte[] content, TopicMapIF topicmap)PUBLIC: Extracts keywords from the given content, using the information in the topic map, and returns a TermDatabase representing the results.static TermDatabaseSimpleClassifier. classify(String uri_or_file, TopicMapIF topicmap)PUBLIC: Extracts keywords from the given URI or file, using the information in the topic map, and returns a TermDatabase representing the results.Constructors in net.ontopia.topicmaps.classify with parameters of type TopicMapIF Constructor Description TopicMapAnalyzer(TopicMapIF topicmap)TopicMapClassification(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.cmdlineutils
Fields in net.ontopia.topicmaps.cmdlineutils declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFSanityChecker. tmprotected TopicMapIFStatisticsPrinter. tmMethods in net.ontopia.topicmaps.cmdlineutils that return TopicMapIF Modifier and Type Method Description protected static TopicMapIFMerger. merge(String stm1, String stm2)protected static TopicMapIFMerger. merge(TopicMapIF target, String source)Methods in net.ontopia.topicmaps.cmdlineutils with parameters of type TopicMapIF Modifier and Type Method Description protected static voidConsistify. doTNCMerge(TopicMapIF tm)protected static voidConsistify. export(TopicMapIF tm, String outfile, String encoding, char format)protected static voidMerger. export(TopicMapIF tm, String outfile, boolean xtm)protected static TopicMapIFMerger. merge(TopicMapIF target, String source)protected static voidConsistify. normalizeTopicNames(TopicMapIF tm)protected static voidConsistify. removeDuplicates(TopicMapIF tm)Constructors in net.ontopia.topicmaps.cmdlineutils with parameters of type TopicMapIF Constructor Description RandomTopicMapGenerator(TopicMapIF tm)SanityChecker(TopicMapIF tm)Constructor that accepts a topicmap as argument.StatisticsPrinter(TopicMapIF tm)Constructor that accepts a topicmap as argument. -
Uses of TopicMapIF in net.ontopia.topicmaps.cmdlineutils.sanity
Constructors in net.ontopia.topicmaps.cmdlineutils.sanity with parameters of type TopicMapIF Constructor Description AssociationSanity(TopicMapIF tm)DuplicateNames(TopicMapIF tm)DuplicateOccurrences(TopicMapIF tm)NoNames(TopicMapIF tm) -
Uses of TopicMapIF in net.ontopia.topicmaps.cmdlineutils.statistics
Constructors in net.ontopia.topicmaps.cmdlineutils.statistics with parameters of type TopicMapIF Constructor Description NoTypeCount(TopicMapIF tm)TopicAssocDep(TopicMapIF tm)TopicCounter(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.core
Methods in net.ontopia.topicmaps.core that return TopicMapIF Modifier and Type Method Description TopicMapIFTMObjectIF. getTopicMap()PUBLIC: Gets the topic map that this object belongs to.TopicMapIFTopicMapBuilderIF. getTopicMap()PUBLIC: Returns the topic map to which this builder belongs.TopicMapIFTopicMapStoreIF. getTopicMap()PUBLIC: Gets the topic map that is accessible through the root transaction of the store.TopicMapIFTopicMapReaderIF. read()PUBLIC: Reads the next topic map available from some implicit, implementation dependent source.Methods in net.ontopia.topicmaps.core that return types with arguments of type TopicMapIF Modifier and Type Method Description Collection<TopicMapIF>TopicMapReaderIF. readAll()PUBLIC: Reads all the topic map available from some implicit, implementation dependent source.Methods in net.ontopia.topicmaps.core with parameters of type TopicMapIF Modifier and Type Method Description static voidCrossTopicMapException. check(TMObjectIF tmobject, TopicMapIF target)voidTopicMapReaderIF. importInto(TopicMapIF topicmap)PUBLIC: Imports an implicitly designated topic map into the given topic map.voidTopicMapWriterIF. write(TopicMapIF source_topicmap)PUBLIC: Writes the given topic map to an implicit implementation dependent destination.Constructors in net.ontopia.topicmaps.core with parameters of type TopicMapIF Constructor Description CrossTopicMapException(TMObjectIF tmobject, TopicMapIF target) -
Uses of TopicMapIF in net.ontopia.topicmaps.db2tm
Fields in net.ontopia.topicmaps.db2tm declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFContext. topicmapMethods in net.ontopia.topicmaps.db2tm that return TopicMapIF Modifier and Type Method Description TopicMapIFContext. getTopicMap()INTERNAL: Gets the topic map currently in use.Methods in net.ontopia.topicmaps.db2tm with parameters of type TopicMapIF Modifier and Type Method Description static voidDB2TM. add(String cfgfile, TopicMapIF topicmap)PUBLIC: Run conversion from a configuration file into a given topic map.static voidProcessor. addRelations(RelationMapping rmapping, Collection<String> relnames, TopicMapIF topicmap, LocatorIF baseloc)INTERNAL: Runs a DB2TM process by adding tuples to the topic map.static voidProcessor. removeRelations(RelationMapping rmapping, Collection<String> relnames, TopicMapIF topicmap, LocatorIF baseloc)INTERNAL: Runs a DB2TM process by removing tuples from the topic map.voidContext. setTopicMap(TopicMapIF topicmap)INTERNAL: Sets the current topic map.static voidDB2TM. sync(String cfgfile, TopicMapIF topicmap)PUBLIC: Run synchronization from a configuration file against a given topic map.static voidDB2TM. sync(String cfgfile, TopicMapIF topicmap, boolean force_rescan)PUBLIC: Run synchronization from a configuration file against a given topic map.static voidProcessor. synchronizeRelations(RelationMapping rmapping, Collection<String> relnames, TopicMapIF topicmap, LocatorIF baseloc)INTERNAL: Runs a DB2TM process by synchronizing the relations.static voidProcessor. synchronizeRelations(RelationMapping rmapping, Collection<String> relnames, TopicMapIF topicmap, LocatorIF baseloc, boolean forceRescan) -
Uses of TopicMapIF in net.ontopia.topicmaps.entry
Methods in net.ontopia.topicmaps.entry that return TopicMapIF Modifier and Type Method Description protected TopicMapIFAbstractOntopolyURLReference. loadTopicMap(boolean readonly)protected abstract TopicMapIFAbstractURLTopicMapReference. loadTopicMap(boolean readonly) -
Uses of TopicMapIF in net.ontopia.topicmaps.impl.basic
Classes in net.ontopia.topicmaps.impl.basic that implement TopicMapIF Modifier and Type Class Description classTopicMapINTERNAL: The basic topic map implementation.Methods in net.ontopia.topicmaps.impl.basic that return TopicMapIF Modifier and Type Method Description TopicMapIFTMObject. getTopicMap()TopicMapIFTopicMap. getTopicMap()TopicMapIFTopicMapBuilder. getTopicMap() -
Uses of TopicMapIF in net.ontopia.topicmaps.impl.basic.index
Fields in net.ontopia.topicmaps.impl.basic.index declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFClassInstanceIndex. topicmapConstructors in net.ontopia.topicmaps.impl.basic.index with parameters of type TopicMapIF Constructor Description TNCIndex(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.impl.rdbms
Classes in net.ontopia.topicmaps.impl.rdbms that implement TopicMapIF Modifier and Type Class Description classReadOnlyTopicMapINTERNAL: The read-only rdbms topic map implementation.classTopicMapINTERNAL: The rdbms topic map implementation.Fields in net.ontopia.topicmaps.impl.rdbms declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFLocatorLookup. tmprotected TopicMapIFRoleTypeAssocTypeCache. tmprotected TopicMapIFRoleTypeCache. tmprotected TopicMapIFTopicMapBuilder. tmMethods in net.ontopia.topicmaps.impl.rdbms that return TopicMapIF Modifier and Type Method Description TopicMapIFRDBMSTopicMapStore. getTopicMap()TopicMapIFRDBMSTopicMapTransaction. getTopicMap()TopicMapIFReadOnlyTMObject. getTopicMap()TopicMapIFReadOnlyTopicMap. getTopicMap()TopicMapIFTMObject. getTopicMap()TopicMapIFTopicMap. getTopicMap()TopicMapIFTopicMapBuilder. getTopicMap()TopicMapIFRDBMSTopicMapReader. read()Methods in net.ontopia.topicmaps.impl.rdbms that return types with arguments of type TopicMapIF Modifier and Type Method Description Collection<TopicMapIF>RDBMSTopicMapReader. readAll()Methods in net.ontopia.topicmaps.impl.rdbms with parameters of type TopicMapIF Modifier and Type Method Description protected static voidUtils. clearTopicMap(TopicMapIF topicmap)INTERNAL: An internal utility class that let one delete a topic map physically from the database.protected static voidUtils. deleteTopicMap(TopicMapIF topicmap)INTERNAL: An internal utility class that let one delete a topic map physically from the database.static Map<String,Integer>Stats. getStatistics(TopicMapIF topicmap)voidRDBMSTopicMapReader. importInto(TopicMapIF topicmap)static voidUtils. removeDuplicates(TopicMapIF topicmap)INTERNAL: Helper function that effectively finds duplicate characteristics and suppresses them.protected voidTopicMap. setTopicMap(TopicMapIF topicmap)Constructors in net.ontopia.topicmaps.impl.rdbms with parameters of type TopicMapIF Constructor Description LocatorLookup(String qname, TransactionIF txn, TopicMapIF tm, int lrusize, E nullObject)TopicMapBuilder(TransactionIF txn, TopicMapIF tm) -
Uses of TopicMapIF in net.ontopia.topicmaps.impl.rdbms.index
Methods in net.ontopia.topicmaps.impl.rdbms.index that return TopicMapIF Modifier and Type Method Description protected TopicMapIFRDBMSIndex. getTopicMap() -
Uses of TopicMapIF in net.ontopia.topicmaps.impl.remote
Methods in net.ontopia.topicmaps.impl.remote that return TopicMapIF Modifier and Type Method Description TopicMapIFDynamicAssociation. getTopicMap()TopicMapIFDynamicAssociationRole. getTopicMap()TopicMapIFRemoteTopic. getTopicMap() -
Uses of TopicMapIF in net.ontopia.topicmaps.impl.tmapi2
Methods in net.ontopia.topicmaps.impl.tmapi2 that return TopicMapIF Modifier and Type Method Description TopicMapIFTopicMapImpl. getWrapped()Methods in net.ontopia.topicmaps.impl.tmapi2 with parameters of type TopicMapIF Modifier and Type Method Description TopicMapImplMemoryTopicMapSystemImpl. createTopicMap(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.impl.utils
Fields in net.ontopia.topicmaps.impl.utils declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFAbstractTopicMapTransaction. topicmapprotected TopicMapIFTMRevitalizer. topicmapMethods in net.ontopia.topicmaps.impl.utils that return TopicMapIF Modifier and Type Method Description TopicMapIFAbstractTopicMapStore. getTopicMap()TopicMapIFAbstractTopicMapTransaction. getTopicMap()TopicMapIFPhantomAssociation. getTopicMap()TopicMapIFSnapshotTMObject. getTopicMap()TopicMapIFTopicMapTransactionIF. getTopicMap()Deprecated.PUBLIC: Gets the topic map that is accessible through the transaction.TopicMapIFAbstractTopicMapReader. read()protected abstract TopicMapIFAbstractTopicMapReader. read(TopicMapStoreFactoryIF store_factory)Methods in net.ontopia.topicmaps.impl.utils that return types with arguments of type TopicMapIF Modifier and Type Method Description Collection<TopicMapIF>AbstractTopicMapReader. readAll()protected Collection<TopicMapIF>AbstractTopicMapReader. readAll(TopicMapStoreFactoryIF store_factory)Methods in net.ontopia.topicmaps.impl.utils with parameters of type TopicMapIF Modifier and Type Method Description static voidDeletionUtils. clear(TopicMapIF topicmap)INTERNAL: Deletes all the topics and associations from the topic map.voidAbstractTopicMapReader. importInto(TopicMapIF topicmap)static StringObjectStrings. toString(String impl, TopicMapIF topicmap)Constructors in net.ontopia.topicmaps.impl.utils with parameters of type TopicMapIF Constructor Description TMRevitalizer(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.nav.context
Fields in net.ontopia.topicmaps.nav.context declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFAbstractUserThemeFilter. topicMapMethods in net.ontopia.topicmaps.nav.context that return TopicMapIF Modifier and Type Method Description TopicMapIFAbstractUserThemeFilter. getTopicMap()TopicMapIFUserThemeFilterIF. getTopicMap()gets TopicMapIF objectMethods in net.ontopia.topicmaps.nav.context with parameters of type TopicMapIF Modifier and Type Method Description CollectionUserFilterContextStore. getScopeAssociations(TopicMapIF topicmap)CollectionUserFilterContextStore. getScopeOccurrences(TopicMapIF topicmap)CollectionUserFilterContextStore. getScopeTopicNames(TopicMapIF topicmap)CollectionUserFilterContextStore. getScopeVariantNames(TopicMapIF topicmap)voidUserFilterContextStore. resetScopeAssociations(TopicMapIF topicmap)voidUserFilterContextStore. resetScopeOccurrences(TopicMapIF topicmap)voidUserFilterContextStore. resetScopeTopicNames(TopicMapIF topicmap)voidUserFilterContextStore. resetScopeVariantNames(TopicMapIF topicmap)voidUserFilterContextStore. setScopeAssociations(TopicMapIF topicmap, Collection themes_associations)voidUserFilterContextStore. setScopeOccurrences(TopicMapIF topicmap, Collection themes_occurrences)voidUserFilterContextStore. setScopeTopicNames(TopicMapIF topicmap, Collection themes_baseNames)voidUserFilterContextStore. setScopeVariantNames(TopicMapIF topicmap, Collection themes_variantNames)voidAbstractUserThemeFilter. setTopicMap(TopicMapIF topicMap)voidBasenameUserThemeFilter. setTopicMap(TopicMapIF topicMap)voidUserThemeFilterIF. setTopicMap(TopicMapIF topicMap)set TopicMapIF objectConstructors in net.ontopia.topicmaps.nav.context with parameters of type TopicMapIF Constructor Description AbstractUserThemeFilter(TopicMapIF topicMap)BasenameUserThemeFilter(TopicMapIF topicMap)ThemeCategorizer(TopicMapIF tm, Collection context)empty constructor. -
Uses of TopicMapIF in net.ontopia.topicmaps.nav2.core
Methods in net.ontopia.topicmaps.nav2.core that return TopicMapIF Modifier and Type Method Description TopicMapIFNavigatorPageIF. getTopicMap()INTERNAL: Get the topicmap object the context tag is working with.TopicMapIFNavigatorApplicationIF. getTopicMapById(String topicmapId)INTERNAL: GetTopicMapIFobject for specified TopicMap String Identifier which is in accordance to the identifiers used by the TopicMapRepositoryIF.TopicMapIFNavigatorApplicationIF. getTopicMapById(String topicmapId, boolean readonly)INTERNAL: GetTopicMapIFobject for specified TopicMap String Identifier which is in accordance to the identifiers used by the TopicMapRepositoryIF.Methods in net.ontopia.topicmaps.nav2.core with parameters of type TopicMapIF Modifier and Type Method Description StringNavigatorApplicationIF. getTopicMapRefId(TopicMapIF topicmap)INTERNAL: Get the reference ID of the topic map within the application's store registry.voidNavigatorApplicationIF. returnTopicMap(TopicMapIF topicmap)INTERNAL: Returns theTopicMapIFobject to the navigator application. -
Uses of TopicMapIF in net.ontopia.topicmaps.nav2.impl.basic
Methods in net.ontopia.topicmaps.nav2.impl.basic that return TopicMapIF Modifier and Type Method Description TopicMapIFNavigatorApplication. getTopicMapById(String topicmapId)TopicMapIFNavigatorApplication. getTopicMapById(String topicmapId, boolean readonly)Methods in net.ontopia.topicmaps.nav2.impl.basic with parameters of type TopicMapIF Modifier and Type Method Description StringNavigatorApplication. getTopicMapRefId(TopicMapIF topicmap)voidNavigatorApplication. returnTopicMap(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.nav2.portlets.pojos
Methods in net.ontopia.topicmaps.nav2.portlets.pojos with parameters of type TopicMapIF Modifier and Type Method Description List<List<YahooTree.TreeNode>>YahooTree. makeModel(TopicMapIF topicmap)protected static ParsedQueryIFMenuUtils. optimisticParse(String query, TopicMapIF tm)Parse the given query for the given topic map.protected static DeclarationContextIFMenuUtils. optimisticParse(TopicMapIF tm, String query)Parse the given declaration-context-query for the given topic map.static voidWiki. render(String text, Writer out, TopicMapIF topicmap, Map params) -
Uses of TopicMapIF in net.ontopia.topicmaps.nav2.realm
Methods in net.ontopia.topicmaps.nav2.realm that return TopicMapIF Modifier and Type Method Description protected TopicMapIFTMLoginModule. getTopicMap() -
Uses of TopicMapIF in net.ontopia.topicmaps.nav2.servlets
Methods in net.ontopia.topicmaps.nav2.servlets that return TopicMapIF Modifier and Type Method Description TopicMapIFDataIntegrationServlet. transformRequest(String transformId, InputStream xmlstream, LocatorIF base) -
Uses of TopicMapIF in net.ontopia.topicmaps.nav2.taglibs.logic
Methods in net.ontopia.topicmaps.nav2.taglibs.logic that return TopicMapIF Modifier and Type Method Description TopicMapIFContextTag. getTopicMap()Methods in net.ontopia.topicmaps.nav2.taglibs.logic with parameters of type TopicMapIF Modifier and Type Method Description voidContextTag. _setTopicMap(TopicMapIF topicmap)Special setter used only for unit testing purposes. -
Uses of TopicMapIF in net.ontopia.topicmaps.nav2.utils
Fields in net.ontopia.topicmaps.nav2.utils declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFTreeWidget. topicmapMethods in net.ontopia.topicmaps.nav2.utils that return TopicMapIF Modifier and Type Method Description static TopicMapIFContextUtils. getTopicMap(javax.servlet.jsp.PageContext pageContext)EXPERIMENTAL: Get the topic map object the context tag is working with.static TopicMapIFContextUtils. getTopicMap(javax.servlet.ServletRequest request)EXPERIMENTAL: Get the topic map object the context tag is working with.Methods in net.ontopia.topicmaps.nav2.utils with parameters of type TopicMapIF Modifier and Type Method Description voidDynamicTreeWidget. setTopicMap(TopicMapIF topicmap)PUBLIC: Sets the topic map used by the widget.voidTreeWidget. setTopicMap(TopicMapIF topicmap)PUBLIC: Sets the topic map used by the widget.static TMObjectIFNavigatorUtils. stringID2Object(TopicMapIF tm, String s)INTERNAL: Tries to convert a string which should contain a subject identifier, XML ID, or object ID to aTMObjectIFobject in the following order: try to match a subject indicator (tm.getTopicBySubjectIdentifier) try to match a source locator (tm.getObjectByItemIdentifier) try to match a topic id (tm.getObjectById)static TMObjectIFNavigatorUtils. stringID2Object(TopicMapIF tm, String s, DeclarationContextIF context)INTERNAL: Tries to convert a string which should contain a subject identifier, XML ID, or object ID to aTMObjectIFobject in the following order: try to match a subject indicator (tm.getTopicBySubjectIdentifier) try to match a source locator (tm.getObjectByItemIdentifier) try to match a topic id (tm.getObjectById) try to match a subject identifier with a prefix defined in the DeclarationContextIFstatic TopicIFNavigatorUtils. stringID2Topic(TopicMapIF tm, String s)INTERNAL: Tries to convert a string which should contain a subject identifier, XML ID, or object ID to aTopicIFobject in the following order: try to match a subject indicator (tm.getTopicBySubjectIdentifier) try to match a source (tm.getObjectByItemIdentifier) try to match a topic id (tm.getObjectById)static CollectionNavigatorUtils. stringIDs2Topics(TopicMapIF tm, String strList, String delimiter)INTERNAL: Converts from a string of subject identities, source IDs or object IDs separated by spaces (default) to a Collection of topics.Constructors in net.ontopia.topicmaps.nav2.utils with parameters of type TopicMapIF Constructor Description DynamicTreeWidget(TopicMapIF topicmap, String tablequery, String ownpage, String nodepage)PUBLIC: Sets up the widget ready for use.TreeWidget(TopicMapIF topicmap, String query, String topquery, String ownpage, String nodepage)PUBLIC: Sets up the widget ready for use. -
Uses of TopicMapIF in net.ontopia.topicmaps.query.core
Methods in net.ontopia.topicmaps.query.core with parameters of type TopicMapIF Modifier and Type Method Description QueryProcessorIFQueryProcessorFactoryIF. createQueryProcessor(TopicMapIF topicmap, LocatorIF base, Map<String,String> properties)PUBLIC: Creates a newQueryProcessorIFinstance to query a given topic map. -
Uses of TopicMapIF in net.ontopia.topicmaps.query.impl.basic
Fields in net.ontopia.topicmaps.query.impl.basic declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFAbstractInstanceOfPredicate. topicmapprotected TopicMapIFAssociationPredicate. topicmapprotected TopicMapIFAssociationRolePredicate. topicmapprotected TopicMapIFBaseLocatorPredicate. topicmapprotected TopicMapIFDatatypePredicate. topicmapprotected TopicMapIFDynamicAssociationPredicate. topicmapprotected TopicMapIFDynamicOccurrencePredicate. topicmapprotected TopicMapIFItemIdentifierPredicate. topicmapprotected TopicMapIFJavaModule. topicmapprotected TopicMapIFJavaSearcherPredicate. topicmapprotected TopicMapIFObjectIdPredicate. topicmapprotected TopicMapIFOccurrencePredicate. topicmapprotected TopicMapIFPredicateFactory. topicmapprotected TopicMapIFQueryProcessor. topicmapprotected TopicMapIFReifiesPredicate. topicmapprotected TopicMapIFResourcePredicate. topicmapprotected TopicMapIFRolePlayerPredicate. topicmapprotected TopicMapIFScopePredicate. topicmapprotected TopicMapIFSubjectIdentifierPredicate. topicmapprotected TopicMapIFSubjectLocatorPredicate. topicmapprotected TopicMapIFTopicMapPredicate. topicmapprotected TopicMapIFTopicNamePredicate. topicmapprotected TopicMapIFTopicPredicate. topicmapprotected TopicMapIFTypePredicate. topicmapprotected TopicMapIFValueLikePredicate. topicmapprotected TopicMapIFValuePredicate. topicmapprotected TopicMapIFVariantPredicate. topicmapMethods in net.ontopia.topicmaps.query.impl.basic that return TopicMapIF Modifier and Type Method Description TopicMapIFQueryContext. getTopicMap()Methods in net.ontopia.topicmaps.query.impl.basic with parameters of type TopicMapIF Modifier and Type Method Description static CollectionPredicateUtils. getAllObjects(TopicMapIF topicmap)Returns all topic map objects in the topic map. -
Uses of TopicMapIF in net.ontopia.topicmaps.query.impl.rdbms
Fields in net.ontopia.topicmaps.query.impl.rdbms declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFInPredicate. topicmapprotected TopicMapIFNamePredicate. topicmapprotected TopicMapIFPredicateFactory. topicmapprotected TopicMapIFQueryProcessor. topicmapMethods in net.ontopia.topicmaps.query.impl.rdbms that return TopicMapIF Modifier and Type Method Description TopicMapIFQueryProcessor. getTopicMap() -
Uses of TopicMapIF in net.ontopia.topicmaps.query.impl.utils
Methods in net.ontopia.topicmaps.query.impl.utils with parameters of type TopicMapIF Modifier and Type Method Description QueryProcessorIFTologQueryProcessorFactory. createQueryProcessor(TopicMapIF topicmap, LocatorIF base, Map<String,String> properties)static booleanPrefetcher. prefetch(TopicMapIF tm, Object[] objects, int type, int[] fields, boolean[] traverse)static booleanPrefetcher. prefetch(TopicMapIF tm, Object[] objects, int type, int field, boolean traverse)static booleanPrefetcher. prefetch(TopicMapIF tm, Collection objects, int type, int[] fields, boolean[] traverse)static booleanPrefetcher. prefetch(TopicMapIF tm, Collection objects, int type, int field, boolean traverse)static booleanPrefetcher. prefetch(TopicMapIF tm, SearchResultIF result, String idfname)static booleanPrefetcher. prefetch(TopicMapIF tm, QueryMatches matches, int qmidx, int type, int[] fields, boolean[] traverse)static booleanPrefetcher. prefetch(TopicMapIF tm, QueryMatches matches, int qmidx, int type, int field, boolean traverse)static booleanPrefetcher. prefetchRolesByType(TopicMapIF tm, QueryMatches matches, int qmidx, TopicIF rtype, int[] fields, boolean[] traverse)static booleanPrefetcher. prefetchRolesByType(TopicMapIF tm, QueryMatches matches, int qmidx, TopicIF rtype, TopicIF atype, int[] fields, boolean[] traverse)Constructors in net.ontopia.topicmaps.query.impl.utils with parameters of type TopicMapIF Constructor Description PumpPredicate(TopicMapIF topicmap, List subclauses, int limit, Variable valuevar, Variable objectvar, Object literal, boolean equals, boolean bigger) -
Uses of TopicMapIF in net.ontopia.topicmaps.query.parser
Methods in net.ontopia.topicmaps.query.parser that return TopicMapIF Modifier and Type Method Description TopicMapIFGlobalParseContext. getTopicMap()TopicMapIFLocalParseContext. getTopicMap()TopicMapIFParseContextIF. getTopicMap()INTERNAL: Returns the topic map being parsed against.Methods in net.ontopia.topicmaps.query.parser with parameters of type TopicMapIF Modifier and Type Method Description intInsertStatement. doStaticUpdates(TopicMapIF topicmap, Map arguments)intMergeStatement. doStaticUpdates(TopicMapIF topicmap, Map arguments)intModificationFunctionStatement. doStaticUpdates(TopicMapIF topicmap, Map arguments)abstract intModificationStatement. doStaticUpdates(TopicMapIF topicmap, Map arguments)Constructors in net.ontopia.topicmaps.query.parser with parameters of type TopicMapIF Constructor Description GlobalParseContext(PredicateFactoryIF factory, TopicMapIF topicmap)GlobalParseContext(PredicateFactoryIF factory, TopicMapIF topicmap, LocatorIF base) -
Uses of TopicMapIF in net.ontopia.topicmaps.query.spi
Fields in net.ontopia.topicmaps.query.spi declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFAbstractSearcher. topicmapMethods in net.ontopia.topicmaps.query.spi that return TopicMapIF Modifier and Type Method Description TopicMapIFJavaPredicate. getTopicMap()Methods in net.ontopia.topicmaps.query.spi with parameters of type TopicMapIF Modifier and Type Method Description voidAbstractSearcher. setTopicMap(TopicMapIF topicmap)voidJavaPredicate. setTopicMap(TopicMapIF topicmap)voidSearcherIF. setTopicMap(TopicMapIF topicmap)PUBLIC: Called by the query engine before using the instance to pass the topic map being queried to the predicate. -
Uses of TopicMapIF in net.ontopia.topicmaps.query.utils
Methods in net.ontopia.topicmaps.query.utils with parameters of type TopicMapIF Modifier and Type Method Description static QueryProcessorIFQueryUtils. createQueryProcessor(String queryLanguage, TopicMapIF topicmap, Map properties)static QueryProcessorIFQueryUtils. createQueryProcessor(String queryLanguage, TopicMapIF topicmap, LocatorIF base)static QueryProcessorIFQueryUtils. createQueryProcessor(String queryLanguage, TopicMapIF topicmap, LocatorIF base, Map properties)EXPERIMENTAL: ...static QueryProcessorIFQueryUtils. createQueryProcessor(TopicMapIF topicmap)PUBLIC: Factory method for creating a query processor for a given topic map; always returns a new processor.static QueryProcessorIFQueryUtils. createQueryProcessor(TopicMapIF topicmap, Map properties)EXPERIMENTAL: ...static QueryProcessorIFQueryUtils. createQueryProcessor(TopicMapIF topicmap, LocatorIF base)PUBLIC: Factory method for creating a new query processor for a given topic map and base address.static QueryProcessorIFQueryUtils. createQueryProcessor(TopicMapIF topicmap, LocatorIF base, Map properties)static QueryProcessorIFQueryUtils. getQueryProcessor(String queryLanguage, TopicMapIF topicmap)static QueryProcessorIFQueryUtils. getQueryProcessor(String queryLanguage, TopicMapIF topicmap, LocatorIF base)PUBLIC: Returns the default query processor for the given topic map and base address.static QueryProcessorIFQueryUtils. getQueryProcessor(TopicMapIF topicmap)PUBLIC: Returns a query processor for the given topic map; will always return the same processor with the default query language for the same topic map.static QueryProcessorIFQueryUtils. getQueryProcessor(TopicMapIF topicmap, LocatorIF base)static DeclarationContextIFQueryUtils. parseDeclarations(TopicMapIF topicmap, String declarations)PUBLIC: Parses a set of tolog declarations and returns an object representing the resulting declaration context.static DeclarationContextIFQueryUtils. parseDeclarations(TopicMapIF topicmap, String declarations, DeclarationContextIF context)PUBLIC: Parses a set of tolog declarations in an existing context, and returns an object representing the resulting nested declaration context.Constructors in net.ontopia.topicmaps.query.utils with parameters of type TopicMapIF Constructor Description QueryWrapper(TopicMapIF topicmap)EXPERIMENTAL: Creates a wrapper for this particular topic map. -
Uses of TopicMapIF in net.ontopia.topicmaps.rest
Methods in net.ontopia.topicmaps.rest with parameters of type TopicMapIF Modifier and Type Method Description DeclarationContextIFOntopiaRestApplication. getDeclarationContext(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.converters
Methods in net.ontopia.topicmaps.rest.converters with parameters of type TopicMapIF Modifier and Type Method Description protected <T> TAbstractConverter. objectFromFragment(TopicMapIF fragment, Class<T> target, org.restlet.resource.Resource resource) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.core
Methods in net.ontopia.topicmaps.rest.core with parameters of type TopicMapIF Modifier and Type Method Description <C> CParameterResolverIF. resolve(TopicMapIF topicmap, org.restlet.Request request, String name, Class<C> klass, boolean allowNull) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.model.mixin
Subinterfaces of TopicMapIF in net.ontopia.topicmaps.rest.model.mixin Modifier and Type Interface Description interfaceMTopicMapAsValue -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.resources
Methods in net.ontopia.topicmaps.rest.resources that return TopicMapIF Modifier and Type Method Description protected TopicMapIFAbstractTransactionalResource. getTopicMap() -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.utils
Methods in net.ontopia.topicmaps.rest.utils with parameters of type TopicMapIF Modifier and Type Method Description <C> CDefaultParameterResolver. resolve(TopicMapIF topicmap, org.restlet.Request request, String name, Class<C> klass, boolean allowNull)<C> CDefaultParameterResolver. resolveAttribute(TopicMapIF topicmap, org.restlet.Request request, String attribute, Class<C> klass, boolean allowNull) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1
Methods in net.ontopia.topicmaps.rest.v1 with parameters of type TopicMapIF Modifier and Type Method Description TMObjectIFTMObjectController. resolve(TopicMapIF tm, String objectId, Collection<URILocator> itemIdentifiers)<C extends TMObjectIF>
CTMObjectController. resolve(TopicMapIF tm, TMObject object, Class<C> expected) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.association
Methods in net.ontopia.topicmaps.rest.v1.association with parameters of type TopicMapIF Modifier and Type Method Description AssociationIFAssociationController. add(TopicMapIF tm, TopicIF type, Association association)AssociationIFAssociationController. add(TopicMapIF tm, Association association)AssociationIFAssociationController. change(TopicMapIF tm, AssociationIF result, Association association)voidAssociationController. remove(TopicMapIF tm, Association association)AssociationIFAssociationController. resolve(TopicMapIF tm, Association association) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.name
Methods in net.ontopia.topicmaps.rest.v1.name with parameters of type TopicMapIF Modifier and Type Method Description TopicNameIFTopicNameController. add(TopicMapIF tm, TopicIF topic, TopicName name)TopicNameIFTopicNameController. add(TopicMapIF tm, TopicName name)TopicNameIFTopicNameController. change(TopicMapIF topicMap, TopicNameIF result, TopicName name)voidTopicNameController. remove(TopicMapIF tm, TopicName name)TopicNameIFTopicNameController. resolve(TopicMapIF tm, TopicName name) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.occurrence
Methods in net.ontopia.topicmaps.rest.v1.occurrence with parameters of type TopicMapIF Modifier and Type Method Description OccurrenceIFOccurrenceController. add(TopicMapIF tm, TopicIF topic, Occurrence occurrence)OccurrenceIFOccurrenceController. add(TopicMapIF tm, Occurrence occurrence)OccurrenceIFOccurrenceController. change(TopicMapIF tm, OccurrenceIF result, Occurrence occurrence)voidOccurrenceController. remove(TopicMapIF tm, Occurrence occurrence)OccurrenceIFOccurrenceController. resolve(TopicMapIF tm, Occurrence occurrence) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.query
Methods in net.ontopia.topicmaps.rest.v1.query with parameters of type TopicMapIF Modifier and Type Method Description QueryResultIFQueryController. query(TopicMapIF topicmap, String language, String query) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.role
Methods in net.ontopia.topicmaps.rest.v1.role with parameters of type TopicMapIF Modifier and Type Method Description AssociationRoleIFRoleController. add(TopicMapIF tm, AssociationIF association, AssociationRole role)AssociationRoleIFRoleController. change(TopicMapIF tm, AssociationRoleIF result, AssociationRole role)voidRoleController. remove(TopicMapIF tm, AssociationRole role)AssociationRoleIFRoleController. resolve(TopicMapIF tm, AssociationRole role) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.scoped
Methods in net.ontopia.topicmaps.rest.v1.scoped with parameters of type TopicMapIF Modifier and Type Method Description Collection<TopicIF>ScopedController. resolve(TopicMapIF tm, Collection<Topic> scope) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.topic
Methods in net.ontopia.topicmaps.rest.v1.topic with parameters of type TopicMapIF Modifier and Type Method Description TopicIFTopicController. add(TopicMapIF tm, TopicIF type, Topic topic)TopicIFTopicController. add(TopicMapIF tm, Topic topic)TopicIFTopicController. change(TopicMapIF tm, TopicIF result, Topic topic)voidTopicController. remove(TopicMapIF tm, Topic topic)TopicIFTopicController. resolve(TopicMapIF tm, Topic topic) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.topicmap
Methods in net.ontopia.topicmaps.rest.v1.topicmap with parameters of type TopicMapIF Modifier and Type Method Description voidTopicMapController. change(TopicMapReferenceIF reference, TopicMapIF tm, TopicMap topicmap)Constructors in net.ontopia.topicmaps.rest.v1.topicmap with parameters of type TopicMapIF Constructor Description TopicMapWrapper(TopicMapIF tm, TopicMapReferenceIF reference) -
Uses of TopicMapIF in net.ontopia.topicmaps.rest.v1.variant
Methods in net.ontopia.topicmaps.rest.v1.variant with parameters of type TopicMapIF Modifier and Type Method Description VariantNameIFVariantNameController. add(TopicMapIF tm, TopicNameIF name, VariantName variant)VariantNameIFVariantNameController. add(TopicMapIF tm, VariantName variant)VariantNameIFVariantNameController. change(TopicMapIF tm, VariantNameIF result, VariantName variant)voidVariantNameController. remove(TopicMapIF tm, VariantName variant)VariantNameIFVariantNameController. resolve(TopicMapIF tm, VariantName variant) -
Uses of TopicMapIF in net.ontopia.topicmaps.utils
Fields in net.ontopia.topicmaps.utils declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFAssociationBuilder. topicmapMethods in net.ontopia.topicmaps.utils with parameters of type TopicMapIF Modifier and Type Method Description static Collection<TopicIF>IdentityUtils. findSameTopic(TopicMapIF topicmap, TopicIF topic)INTERNAL: Returns the topic or topics with overlapping identities in the given topic map.static TopicIFMergeUtils. findTopic(TopicMapIF othertm, TopicIF topic)PUBLIC: Find a topic in the other topic map which would merge with the given topic if that were to be added to the same topic map.static Function<TopicIF,String>TopicStringifiers. getFastSortNameStringifier(TopicMapIF tm)PUBLIC: Gets a fast stringifier that will return the sort names of topics, when they have one.QNameLookupQNameRegistry. getLookup(TopicMapIF topicmap)PUBLIC: Returns a QNameLookup object bound to a specific topic map.static TMObjectIFIdentityUtils. getObjectBySymbolicId(TopicMapIF topicmap, String symbolicId)INTERNAL: Looks up a topic map object by its symbolic id.static LocatorIFIdentityUtils. getSymbolicIdLocator(TopicMapIF topicmap, String symbolicId)INTERNAL: Expands a symbolic id into a LocatorIF based on the base locator of the given topic map..static StringKeyGenerator. makeAssociationKey(AssociationIF assoc, TopicMapIF othertm)PUBLIC: Makes a key for an association, as it would look in another topic map.static StringKeyGenerator. makeAssociationRoleKey(AssociationRoleIF role, TopicMapIF othertm)PUBLIC: Makes a key for an association role, as it would look in another topic map.static StringKeyGenerator. makeKey(ReifiableIF object, TopicMapIF topicmap)PUBLIC: Makes a key for any reifiable object as it would look like were the object in another topic map.static StringKeyGenerator. makeOccurrenceKey(OccurrenceIF occ, TopicMapIF othertm)PUBLIC: Makes a key for an occurrence, as it would look in another topic map.protected static StringKeyGenerator. makeScopeKey(Collection<TopicIF> scope, TopicMapIF othertm)protected static StringKeyGenerator. makeScopeKey(ScopedIF scoped, TopicMapIF othertm)static StringKeyGenerator. makeTopicNameKey(TopicNameIF bn, TopicMapIF othertm)PUBLIC: Makes a key for a topic name, as it would look in another topic map.protected static StringKeyGenerator. makeTypedKey(TypedIF typed, TopicMapIF othertm)static AssociationIFMergeUtils. mergeInto(TopicMapIF topicmap, AssociationIF source)PUBLIC: Merges the source association into the target topic map.static TopicIFMergeUtils. mergeInto(TopicMapIF targettm, TopicIF source)PUBLIC: Merges the source topic from into the target topic map, when the source topic is not already in the target topic map.static TopicIFMergeUtils. mergeInto(TopicMapIF targettm, TopicIF source, Predicate<TMObjectIF> decider)PUBLIC: Merges the source topic from into the target topic map, when the source topic is not already in the target topic map.static voidMergeUtils. mergeInto(TopicMapIF target, TopicMapIF source)PUBLIC: Merges one topic map into another topic map.static voidDuplicateSuppressionUtils. removeDuplicates(TopicMapIF topicmap)PUBLIC: Remove all duplicates in the entire topic map.static voidClassInstanceUtils. resolveAssociations1(TopicMapIF topicmap)INTERNAL: Replaces all class-instance associations in a topic map by direct references from the topics in question to their types.static voidClassInstanceUtils. resolveAssociations2(TopicMapIF topicmap)INTERNAL: Replaces all class-instance associations using the XTM 2.0 PSIs in a topic map by direct references from the topics in question to their types.static voidTopicMapSynchronizer. update(TopicMapIF target, String ttopicq, Predicate<TMObjectIF> tchard, TopicMapIF source, String stopicq, Predicate<TMObjectIF> schard)PUBLIC: Updates the target topic map from the source topic map, synchronizing the selected topics in the target (ttopicq) with the selected topics in the source (stopicq) using the deciders to filter topic characteristics to synchronize.static voidTopicMapSynchronizer. update(TopicMapIF target, TopicIF source)PUBLIC: Updates the target topic map against the source topic, including all characteristics from the source topic.static voidTopicMapSynchronizer. update(TopicMapIF target, TopicIF source, Predicate<TMObjectIF> tfilter)PUBLIC: Updates the target topic map against the source topic, synchronizing only the characteristics from the target that are accepted by the filter.static voidTopicMapSynchronizer. update(TopicMapIF target, TopicIF source, Predicate<TMObjectIF> tfilter, Predicate<TMObjectIF> sfilter)PUBLIC: Updates the target topic map against the source topic, synchronizing only the characteristics from the target and source that are accepted by the filters.Constructors in net.ontopia.topicmaps.utils with parameters of type TopicMapIF Constructor Description FastSortNameStringifier(TopicMapIF tm) -
Uses of TopicMapIF in net.ontopia.topicmaps.utils.ctm
Methods in net.ontopia.topicmaps.utils.ctm that return TopicMapIF Modifier and Type Method Description protected TopicMapIFCTMTopicMapReader. read(TopicMapStoreFactoryIF store_factory)Methods in net.ontopia.topicmaps.utils.ctm with parameters of type TopicMapIF Modifier and Type Method Description voidCTMParser. setTopicMap(TopicMapIF topicmap, ParseContextIF parent)Constructors in net.ontopia.topicmaps.utils.ctm with parameters of type TopicMapIF Constructor Description GlobalParseContext(TopicMapIF topicmap, LocatorIF base)LocalParseContext(TopicMapIF topicmap, LocatorIF base, ParseContextIF parent) -
Uses of TopicMapIF in net.ontopia.topicmaps.utils.jtm
Methods in net.ontopia.topicmaps.utils.jtm that return TopicMapIF Modifier and Type Method Description protected TopicMapIFJTMTopicMapReader. read(TopicMapStoreFactoryIF store_factory)Methods in net.ontopia.topicmaps.utils.jtm with parameters of type TopicMapIF Modifier and Type Method Description voidJTMTopicMapWriter. write(TopicMapIF tm)PUBLIC: Writes out the given topic map. -
Uses of TopicMapIF in net.ontopia.topicmaps.utils.ltm
Methods in net.ontopia.topicmaps.utils.ltm that return TopicMapIF Modifier and Type Method Description protected TopicMapIFLTMTopicMapReader. read(TopicMapStoreFactoryIF store_factory)Methods in net.ontopia.topicmaps.utils.ltm with parameters of type TopicMapIF Modifier and Type Method Description static Map<String,TopicIF>LTMTemplateImporter. read(TopicMapIF topicmap, String ltm, Map<String,Object> parameters)PUBLIC: Imports an LTM fragment with references to parameter values specified externally.voidLTMParser. setTopicMap(TopicMapIF topicmap)voidLTMTopicMapWriter. write(TopicMapIF tm)PUBLIC: Writes out the given topic map. -
Uses of TopicMapIF in net.ontopia.topicmaps.utils.rdf
Methods in net.ontopia.topicmaps.utils.rdf that return TopicMapIF Modifier and Type Method Description TopicMapIFRDFTopicMapReader. read()Methods in net.ontopia.topicmaps.utils.rdf with parameters of type TopicMapIF Modifier and Type Method Description static voidRDFToTopicMapConverter. convert(InputStream input, String syntax, String mappingurl, String mappingsyntax, TopicMapIF topicmap, boolean lenient)EXPERIMENTAL: Converts an RDF model into the topic map using the given mapping.static voidRDFToTopicMapConverter. convert(URL infileurl, String syntax, String mappingurl, String mappingsyntax, TopicMapIF topicmap, boolean lenient)EXPERIMENTAL: Converts an RDF model into the topic map using the given mapping.static voidRDFToTopicMapConverter. convert(org.apache.jena.rdf.model.Model model, TopicMapIF topicmap)EXPERIMENTAL: Converts an RDF model into the topic map using the mapping found within the RDF model.static voidRDFToTopicMapConverter. generateNames(TopicMapIF topicmap)EXPERIMENTAL: Automatically generates names for nameless topics based on their subject identifiers.voidRDFTopicMapReader. importInto(TopicMapIF topicmap)protected voidRDFTopicMapWriter. setup(TopicMapIF topicmap)voidRDFTopicMapWriter. write(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.utils.tmprefs
Methods in net.ontopia.topicmaps.utils.tmprefs with parameters of type TopicMapIF Modifier and Type Method Description protected TopicIFTopicMapPreferencesFactory. createSystemRootTopic(TopicMapIF topicmap)protected TopicIFTopicMapPreferences. createTopic(TopicMapIF topicmap)protected abstract TopicIFTopicMapPreferencesFactory. createUserRootTopic(TopicMapIF topicmap)protected Set<TopicIF>TopicMapPreferences. fetchChildren(TopicMapIF topicmap, TopicIF topic)protected Set<OccurrenceIF>TopicMapPreferences. fetchProperties(TopicMapIF topicmap)protected TopicIFTopicMapPreferences. fetchPropertyType(String key, TopicMapIF topicmap)protected TopicIFTopicMapPreferences. fetchTopic(TopicMapIF topicmap)static EnumMap<TopicMapPreferencesOntology,TopicIF>TopicMapPreferencesOntology. loadOntology(TopicMapIF topicmap)static EnumMap<TopicMapPreferencesOntology,TopicIF>TopicMapPreferencesOntology. loadOntology(TopicMapIF topicmap, boolean forceCreate)protected voidTopicMapPreferences. removeTopic(TopicMapIF topicmap, TopicIF topic)protected TopicIFTopicMapPreferences. revitalize(TopicIF topic, TopicMapIF topicmap)TopicIFTopicMapPreferencesOntology. t(TopicMapIF tm) -
Uses of TopicMapIF in net.ontopia.topicmaps.utils.tmrap
Fields in net.ontopia.topicmaps.utils.tmrap declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFTopicMapTopicIndex. topicmapMethods in net.ontopia.topicmaps.utils.tmrap that return TopicMapIF Modifier and Type Method Description static TopicMapIFTMRAPImplementation. getTopicPage(NavigatorApplicationIF navapp, TMRAPConfiguration config, Collection<LocatorIF> items, Collection<LocatorIF> subjects, Collection<LocatorIF> indicators, String[] tmids)Methods in net.ontopia.topicmaps.utils.tmrap with parameters of type TopicMapIF Modifier and Type Method Description static StringTopicPage. getReifierName(TopicMapIF topicmap)voidRemoteTopicIndex. loadAssociationTypes(TopicMapIF topicmap)voidRemoteTopicIndex. loadQuery(TopicMapIF topicmap, String query)voidRemoteTopicIndex. loadTopicTypes(TopicMapIF topicmap)Constructors in net.ontopia.topicmaps.utils.tmrap with parameters of type TopicMapIF Constructor Description TopicMapTopicIndex(TopicMapIF topicmap, String editBaseuri, String viewBaseuri, String tmid) -
Uses of TopicMapIF in net.ontopia.topicmaps.utils.xfml
Methods in net.ontopia.topicmaps.utils.xfml that return TopicMapIF Modifier and Type Method Description TopicMapIFXFMLContentHandler. getTopicMap()INTERNAL: Gets the topic map found after having parsed the input source.TopicMapIFXFMLTopicMapReader. read()Methods in net.ontopia.topicmaps.utils.xfml with parameters of type TopicMapIF Modifier and Type Method Description voidXFMLTopicMapReader. importInto(TopicMapIF topicmap) -
Uses of TopicMapIF in net.ontopia.topicmaps.viz
Fields in net.ontopia.topicmaps.viz declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFVizConfigurationManager. topicmapprotected TopicMapIFAbstractUserThemeFilter. topicMapMethods in net.ontopia.topicmaps.viz that return TopicMapIF Modifier and Type Method Description TopicMapIFVizDesktop. getCurrentTopicMap()TopicMapIFAbstractUserThemeFilter. getTopicMap()TopicMapIFTopicMapView. getTopicMap()TopicMapIFVizConfigurationManager. getTopicMap()TopicMapIFVizController. getTopicMap()TopicMapIFVizDesktop. getTopicMap()TopicMapIFVizFrontEndIF. getTopicMap()Return the topic map that this front end is displayingTopicMapIFVizlet. getTopicMap()TopicMapIFVizController. loadTopicMap(File f)TopicMapIFVizController. loadTopicMap(File tmfile, File cfgfile)TopicMapIFVizController. loadTopicMap(TopicMapIF topicMap)TopicMapIFVizController. loadTopicMap(TopicMapIF topicmap, File cfgfile)Methods in net.ontopia.topicmaps.viz with parameters of type TopicMapIF Modifier and Type Method Description voidAssociationScopeFilterMenu. configure(TopicMapIF currentTopicMap, ActionListener parentListener, VizController controller)Configure/reconfigure this menu.voidVizController. configure(AssociationScopeFilterMenu menu, TopicMapIF topicmap, ActionListener parentListener)Configure the given AssociationScopeFilterMenuTopicIFAppletContext. getDefaultScopingTopic(TopicMapIF aTopicmap)TopicIFApplicationContextIF. getDefaultScopingTopic(TopicMapIF aTopicmap)Get the default scoping topicTopicIFDesktopContext. getDefaultScopingTopic(TopicMapIF aTopicmap)TopicIFVizController. getDefaultScopingTopic(TopicMapIF topicmap)TopicIFVizTopicMapConfigurationManager. getScopingTopic(TopicMapIF graphtm)INTERNAL: Finds the scoping topic in the given topic map, and returns it.TopicIFAppletContext. getStartTopic(TopicMapIF aTopicmap)TopicIFApplicationContextIF. getStartTopic(TopicMapIF aTopicmap)Return the start topic defined on the mapTopicIFDesktopContext. getStartTopic(TopicMapIF aTopicmap)TopicIFVizController. getStartTopic(TopicMapIF aTopicmap)TopicIFVizTopicMapConfigurationManager. getStartTopic(TopicMapIF graphtm)INTERNAL: Finds the start topic in the given topic map, and returns it.TopicIFAppletContext. getTopicForLocator(LocatorIF aLocator, TopicMapIF topicmap)TopicIFApplicationContextIF. getTopicForLocator(LocatorIF locator, TopicMapIF aTopicmap)Returns the topic with the given subject identifier, if any.TopicIFDesktopContext. getTopicForLocator(LocatorIF aLocator, TopicMapIF topicmap)TopicMapIFVizController. loadTopicMap(TopicMapIF topicMap)TopicMapIFVizController. loadTopicMap(TopicMapIF topicmap, File cfgfile)voidAbstractUserThemeFilter. setTopicMap(TopicMapIF topicMap)voidBasenameUserThemeFilter. setTopicMap(TopicMapIF topicMap)Constructors in net.ontopia.topicmaps.viz with parameters of type TopicMapIF Constructor Description AbstractUserThemeFilter(TopicMapIF topicMap)BasenameUserThemeFilter(TopicMapIF topicMap)TopicMapView(VizController controller, TopicMapIF topicmap, com.touchgraph.graphlayout.TGPanel tgPanel, VizTopicMapConfigurationManager configman)Creates the view and updates the TGPanel to show the new view. -
Uses of TopicMapIF in net.ontopia.topicmaps.xml
Methods in net.ontopia.topicmaps.xml that return TopicMapIF Modifier and Type Method Description TopicMapIFTMXMLReader. read()TopicMapIFXTMTopicMapReader. read()protected TopicMapIFXTMTopicMapReader. read(TopicMapStoreFactoryIF store_factory)Methods in net.ontopia.topicmaps.xml that return types with arguments of type TopicMapIF Modifier and Type Method Description Collection<TopicMapIF>XTMContentHandler. getTopicMaps()INTERNAL: Gets the topic maps found after having parsed the input source.Methods in net.ontopia.topicmaps.xml with parameters of type TopicMapIF Modifier and Type Method Description voidCanonicalTopicMapWriter. export(TopicMapIF topicmap, ContentHandler dh)PUBLIC: Exports the topic map to the given ContentHandler.voidXTM2TopicMapExporter. export(TopicMapIF tm)INTERNAL: Default export method.voidXTM2TopicMapExporter. export(TopicMapIF tm, ContentHandler dh)INTERNAL: Traverses a Topic Map and emits SAX document handler events according to the Topic Map interchange format to the given document handler.voidXTMTopicMapExporter. export(TopicMapIF tm)INTERNAL: Default export method.voidXTMTopicMapExporter. export(TopicMapIF tm, ContentHandler dh)INTERNAL: Traverses a Topic Map and emits SAX document handler events according to the Topic Map interchange format to the given document handler.static TopicIFXTMContentHandler. getDefaultOccurrenceTopic(TopicMapIF topicmap)static TopicIFXTMContentHandler. getNullTopic(TopicMapIF topicmap)voidTMXMLReader. importInto(TopicMapIF topicmap)voidXTMTopicMapReader. importInto(TopicMapIF topicmap)static voidXTMContentHandler. removeDefaultOccurrenceTopic(TopicMapIF topicmap)static voidXTMContentHandler. removeNullTopic(TopicMapIF topicmap)voidTMXMLWriter. startTopicMap(TopicMapIF topicmap)PUBLIC: Writes the start tag of the document element (to be used in fragment exporting only).voidCanonicalTopicMapWriter. write(TopicMapIF topicmap)voidCanonicalXTMWriter. write(TopicMapIF topicmap)voidTMXMLWriter. write(TopicMapIF topicmap)PUBLIC: Writes the given topic map to the underlying writer.voidXTMTopicMapWriter. write(TopicMapIF topicmap) -
Uses of TopicMapIF in ontopoly.conversion
Fields in ontopoly.conversion declared as TopicMapIF Modifier and Type Field Description protected TopicMapIFUpgradeBase. topicmapMethods in ontopoly.conversion with parameters of type TopicMapIF Modifier and Type Method Description protected static voidUpgradeBase. assignEditMode(TopicMapIF topicmap, LocatorIF base_on, TopicIF rfield, String mode)protected static voidUpgradeBase. assignEmbedded(TopicMapIF topicmap, LocatorIF base_on, TopicIF rfield, String cview)protected static voidUpgradeBase. assignField(TopicMapIF topicmap, LocatorIF base_on, TopicIF oField, String ptypeId)protected static voidUpgradeBase. assignField(TopicMapIF topicmap, LocatorIF base_on, TopicIF oField, TopicIF ptype)protected static voidUpgradeBase. assignFieldsView(TopicMapIF topicmap, LocatorIF base_on, TopicIF fieldDefinition, String view)protected static voidUpgradeBase. assignValueView(TopicMapIF topicmap, LocatorIF base_on, TopicIF rfield, String pview, String cview)protected static voidUpgradeBase. assignViewMode(TopicMapIF topicmap, LocatorIF base_on, TopicIF rfield, String view, String mode)protected static TopicIFUpgradeBase. defineIdentityField(TopicMapIF topicmap, LocatorIF base_on, String itypeId, String cardinality)protected static TopicIFUpgradeBase. defineIdentityField(TopicMapIF topicmap, LocatorIF base_on, TopicIF itype, TopicIF cardinality)protected static UpgradeBase.RoleFieldDefinitionUpgradeBase. defineRoleFields(TopicMapIF topicmap, LocatorIF base_on, String atypeId, String afieldName, String[] rtypeIds, String[] rfieldNames, String[][] ptypeIds)protected static UpgradeBase.RoleFieldDefinitionUpgradeBase. defineRoleFields(TopicMapIF topicmap, LocatorIF base_on, TopicIF atype, String afieldName, TopicIF[] rtypes, String[] rfieldNames, TopicIF[][] pptypes)protected static TopicIFConversionUtils. getCardinalityTopic(int mincard, int maxcard, TopicMapIF tm)protected TopicIFConversionUtils. getCardinalityTopic(int cardinalityCount, TopicMapIF tm)protected static TopicIFUpgradeBase. getTopic(TopicMapIF topicmap, LocatorIF base_on, String ref)protected static voidUpgradeBase. makePublicSystemTopic(TopicMapIF topicmap, LocatorIF base_on, LocatorIF base_t, String topic)protected static voidUpgradeBase. removeObjects(TopicMapIF topicMap, DeclarationContextIF dc, String removalQuery)protected static voidUpgradeBase. removeTopic(TopicMapIF topicmap, LocatorIF base_on, String ref)protected static voidUpgradeBase. removeTopicIfExist(TopicMapIF topicmap, LocatorIF base_on, String ref)protected static voidUpgradeBase. renameSubjectIdentifier(TopicMapIF topicmap, LocatorIF base_on, String oldId, String newId)protected static voidUpgradeBase. renameTopics(TopicMapIF topicmap, String oldName, String newName)protected static voidUpgradeBase. translateAssociations(String atype1, String[] rtypes1, String atype2, String[] rtypes2, TopicMapIF tm, LocatorIF base_on, QueryProcessorIF qp, DeclarationContextIF dc) -
Uses of TopicMapIF in ontopoly.model
Methods in ontopoly.model that return TopicMapIF Modifier and Type Method Description TopicMapIFTopicMap. getTopicMapIF()Constructors in ontopoly.model with parameters of type TopicMapIF Constructor Description TopicMap(TopicMapIF topicMapIF, String topicMapId)
-