|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OccurrenceIF | |
---|---|
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.remote | |
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.viz | |
ontopoly.conversion | |
ontopoly.model | |
ontopoly.utils |
Uses of OccurrenceIF in net.ontopia.infoset.fulltext.topicmaps |
---|
Methods in net.ontopia.infoset.fulltext.topicmaps with parameters of type OccurrenceIF | |
---|---|
DocumentIF |
TopicMapDocumentGeneratorIF.generate(OccurrenceIF occurs)
INTERNAL: Generate a document for the given occurrence. |
DocumentIF |
DefaultTopicMapDocumentGenerator.generate(OccurrenceIF occur)
|
void |
DefaultTopicMapIndexer.index(OccurrenceIF occurs)
INTERNAL: Indexes the given occurrence. |
Uses of OccurrenceIF in net.ontopia.topicmaps.core |
---|
Methods in net.ontopia.topicmaps.core that return OccurrenceIF | |
---|---|
OccurrenceIF |
TopicMapBuilderIF.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
LocatorIF locator)
PUBLIC: Makes a new external occurrence with the given type and locator for the given topic. |
OccurrenceIF |
TopicMapBuilderIF.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.io.Reader value,
long length,
LocatorIF datatype)
PUBLIC: Makes a new internal occurrence with the given type and value for the given topic. |
OccurrenceIF |
TopicMapBuilderIF.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.lang.String value)
PUBLIC: Makes a new internal occurrence with the given type and value for the given topic. |
OccurrenceIF |
TopicMapBuilderIF.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.lang.String value,
LocatorIF datatype)
PUBLIC: Makes a new internal occurrence with the given type and value for the given topic. |
Methods in net.ontopia.topicmaps.core that return types with arguments of type OccurrenceIF | |
---|---|
java.util.Collection<OccurrenceIF> |
TopicIF.getOccurrences()
PUBLIC: Gets the occurrences of this topic. |
Uses of OccurrenceIF in net.ontopia.topicmaps.core.index |
---|
Methods in net.ontopia.topicmaps.core.index that return types with arguments of type OccurrenceIF | |
---|---|
java.util.Collection<OccurrenceIF> |
OccurrenceIndexIF.getOccurrences(java.lang.String value)
INTERNAL: Gets all occurrences that have the specified value independent of datatype. |
java.util.Collection<OccurrenceIF> |
OccurrenceIndexIF.getOccurrences(java.lang.String value,
LocatorIF datatype)
INTERNAL: Gets all occurrences that have the specified value and datatype. |
java.util.Collection<OccurrenceIF> |
ScopeIndexIF.getOccurrences(TopicIF theme)
PUBLIC: Gets all occurrences that have the given topic in their direct scope. |
java.util.Collection<OccurrenceIF> |
ClassInstanceIndexIF.getOccurrences(TopicIF occurrence_type)
PUBLIC: Gets all occurrences that are of the given type. |
java.util.Collection<OccurrenceIF> |
OccurrenceIndexIF.getOccurrencesByPrefix(java.lang.String prefix)
INTERNAL: Gets all occurrences of any datatype that have a value starting with the specified prefix. |
java.util.Collection<OccurrenceIF> |
OccurrenceIndexIF.getOccurrencesByPrefix(java.lang.String prefix,
LocatorIF datatype)
INTERNAL: Gets all occurrences that have the specifed datatype and a value starting with the specified prefix. |
java.util.Iterator<OccurrenceIF> |
OccurrenceIndexIF.getValuesGreaterThanOrEqual(java.lang.String value)
INTERNAL: Gets all occurrence values that are greather than or equal to the given value. |
java.util.Iterator<OccurrenceIF> |
OccurrenceIndexIF.getValuesSmallerThanOrEqual(java.lang.String value)
INTERNAL: Gets all occurrence values that are smaller than or equal to the given value. |
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.basic |
---|
Classes in net.ontopia.topicmaps.impl.basic that implement OccurrenceIF | |
---|---|
class |
Occurrence
INTERNAL: The basic occurrence implementation. |
Fields in net.ontopia.topicmaps.impl.basic with type parameters of type OccurrenceIF | |
---|---|
protected java.util.Set<OccurrenceIF> |
Topic.occurs
|
Methods in net.ontopia.topicmaps.impl.basic that return OccurrenceIF | |
---|---|
OccurrenceIF |
TopicMapBuilder.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
LocatorIF locator)
|
OccurrenceIF |
TopicMapBuilder.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.io.Reader value,
long length,
LocatorIF datatype)
|
OccurrenceIF |
TopicMapBuilder.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.lang.String value)
|
OccurrenceIF |
TopicMapBuilder.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.lang.String value,
LocatorIF datatype)
|
Methods in net.ontopia.topicmaps.impl.basic that return types with arguments of type OccurrenceIF | |
---|---|
java.util.Collection<OccurrenceIF> |
Topic.getOccurrences()
|
Methods in net.ontopia.topicmaps.impl.basic with parameters of type OccurrenceIF | |
---|---|
protected void |
Topic.addOccurrence(OccurrenceIF _occurrence)
|
protected void |
Topic.removeOccurrence(OccurrenceIF _occurrence)
|
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.rdbms |
---|
Classes in net.ontopia.topicmaps.impl.rdbms that implement OccurrenceIF | |
---|---|
class |
ReadOnlyOccurrence
INTERNAL: The read-only rdbms occurrence implementation. |
Methods in net.ontopia.topicmaps.impl.rdbms that return OccurrenceIF | |
---|---|
OccurrenceIF |
TopicMapBuilder.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
LocatorIF locator)
|
OccurrenceIF |
TopicMapBuilder.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.io.Reader value,
long length,
LocatorIF datatype)
|
OccurrenceIF |
TopicMapBuilder.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.lang.String value)
|
OccurrenceIF |
TopicMapBuilder.makeOccurrence(TopicIF topic,
TopicIF occurs_type,
java.lang.String value,
LocatorIF datatype)
|
Methods in net.ontopia.topicmaps.impl.rdbms that return types with arguments of type OccurrenceIF | |
---|---|
java.util.Collection<OccurrenceIF> |
Topic.getOccurrences()
|
java.util.Collection<OccurrenceIF> |
ReadOnlyTopic.getOccurrences()
|
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.rdbms.index |
---|
Methods in net.ontopia.topicmaps.impl.rdbms.index that return types with arguments of type OccurrenceIF | |
---|---|
java.util.Collection<OccurrenceIF> |
OccurrenceIndex.getOccurrences(java.lang.String value)
|
java.util.Collection<OccurrenceIF> |
OccurrenceIndex.getOccurrences(java.lang.String value,
LocatorIF datatype)
|
java.util.Collection<OccurrenceIF> |
ScopeIndex.getOccurrences(TopicIF theme)
|
java.util.Collection<OccurrenceIF> |
ClassInstanceIndex.getOccurrences(TopicIF occurrence_type)
|
java.util.Collection<OccurrenceIF> |
OccurrenceIndex.getOccurrencesByPrefix(java.lang.String prefix)
|
java.util.Collection<OccurrenceIF> |
OccurrenceIndex.getOccurrencesByPrefix(java.lang.String prefix,
LocatorIF datatype)
|
java.util.Iterator<OccurrenceIF> |
OccurrenceIndex.getValuesGreaterThanOrEqual(java.lang.String value)
|
java.util.Iterator<OccurrenceIF> |
OccurrenceIndex.getValuesSmallerThanOrEqual(java.lang.String value)
|
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.remote |
---|
Methods in net.ontopia.topicmaps.impl.remote with parameters of type OccurrenceIF | |
---|---|
protected void |
RemoteTopic.addOccurrence(OccurrenceIF _occurrence)
|
protected void |
RemoteTopic.removeOccurrence(OccurrenceIF _occurrence)
|
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.tmapi2 |
---|
Methods in net.ontopia.topicmaps.impl.tmapi2 that return OccurrenceIF | |
---|---|
OccurrenceIF |
OccurrenceImpl.getWrapped()
|
Methods in net.ontopia.topicmaps.impl.tmapi2 with parameters of type OccurrenceIF | |
---|---|
org.tmapi.core.Occurrence |
TopicMapImpl.wrapOccurrence(OccurrenceIF occ)
|
Constructors in net.ontopia.topicmaps.impl.tmapi2 with parameters of type OccurrenceIF | |
---|---|
OccurrenceImpl(TopicMapImpl topicMap,
OccurrenceIF occ)
|
Uses of OccurrenceIF in net.ontopia.topicmaps.impl.utils |
---|
Classes in net.ontopia.topicmaps.impl.utils that implement OccurrenceIF | |
---|---|
class |
SnapshotOccurrence
INTERNAL: |
Fields in net.ontopia.topicmaps.impl.utils with type parameters of type OccurrenceIF | |
---|---|
protected java.util.Collection<OccurrenceIF> |
SnapshotTopic.occurrences
|
Methods in net.ontopia.topicmaps.impl.utils that return OccurrenceIF | |
---|---|
static OccurrenceIF |
SnapshotOccurrence.makeSnapshot(OccurrenceIF original,
int snapshotType,
java.util.Map<TMObjectIF,SnapshotTMObject> processed)
|
Methods in net.ontopia.topicmaps.impl.utils that return types with arguments of type OccurrenceIF | |
---|---|
java.util.Collection<OccurrenceIF> |
SnapshotTopic.getOccurrences()
|
Methods in net.ontopia.topicmaps.impl.utils with parameters of type OccurrenceIF | |
---|---|
static OccurrenceIF |
SnapshotOccurrence.makeSnapshot(OccurrenceIF original,
int snapshotType,
java.util.Map<TMObjectIF,SnapshotTMObject> processed)
|
static java.lang.String |
ObjectStrings.toString(java.lang.String impl,
OccurrenceIF occurs)
|
Uses of OccurrenceIF in net.ontopia.topicmaps.schema.impl.osl |
---|
Methods in net.ontopia.topicmaps.schema.impl.osl with parameters of type OccurrenceIF | |
---|---|
protected void |
SchemaValidator.validate(OccurrenceIF occ,
OccurrenceConstraint constraint)
|
Uses of OccurrenceIF in net.ontopia.topicmaps.utils |
---|
Methods in net.ontopia.topicmaps.utils that return OccurrenceIF | |
---|---|
static OccurrenceIF |
CopyUtils.copyOccurrence(TopicIF target,
OccurrenceIF source)
INTERNAL: Copies the occurrence from the source topic to the target topic. |
static OccurrenceIF |
MergeUtils.mergeInto(TopicIF target,
OccurrenceIF source)
PUBLIC: Merges the source occurrence into the target topic in another topic map. |
Methods in net.ontopia.topicmaps.utils with parameters of type OccurrenceIF | |
---|---|
static OccurrenceIF |
CopyUtils.copyOccurrence(TopicIF target,
OccurrenceIF source)
INTERNAL: Copies the occurrence from the source topic to the target topic. |
static void |
CopyUtils.copyOccurrenceData(OccurrenceIF target,
OccurrenceIF source)
INTERNAL: Copies the occurrence value and datatype from the source topic to the target topic. |
protected static java.lang.String |
KeyGenerator.makeDataKey(OccurrenceIF occ)
|
static java.lang.String |
KeyGenerator.makeOccurrenceKey(OccurrenceIF occ)
PUBLIC: Makes a key for an occurrence. |
static java.lang.String |
KeyGenerator.makeOccurrenceKey(OccurrenceIF occ,
TopicMapIF othertm)
PUBLIC: Makes a key for an occurrence, as it would look in another topic map. |
static void |
MergeUtils.mergeInto(OccurrenceIF target,
OccurrenceIF source)
PUBLIC: Merges the source occurrence into the target occurrence. |
static OccurrenceIF |
MergeUtils.mergeInto(TopicIF target,
OccurrenceIF source)
PUBLIC: Merges the source occurrence into the target topic in another topic map. |
Uses of OccurrenceIF in net.ontopia.topicmaps.utils.deciders |
---|
Methods in net.ontopia.topicmaps.utils.deciders with parameters of type OccurrenceIF | |
---|---|
boolean |
TMExporterDecider.ok(OccurrenceIF occurrence)
Return true iff the type of the occurrence is accepted |
Uses of OccurrenceIF in net.ontopia.topicmaps.viz |
---|
Methods in net.ontopia.topicmaps.viz that return OccurrenceIF | |
---|---|
protected OccurrenceIF |
VizConfigurationManager.getOccurrence(TopicIF topic,
TopicIF type)
Returns the occurrence of the given type, if there is one. |
Uses of OccurrenceIF in ontopoly.conversion |
---|
Methods in ontopoly.conversion that return OccurrenceIF | |
---|---|
protected static OccurrenceIF |
UpgradeBase.addOccurrence(TopicMap topicMap,
LocatorIF base_on,
TopicIF topic,
java.lang.String otype,
java.lang.String datatype,
java.lang.String value)
|
static OccurrenceIF |
ConversionUtils.getOccurrenceOfType(TopicIF topic,
TopicIF occType)
|
Methods in ontopoly.conversion that return types with arguments of type OccurrenceIF | |
---|---|
static java.util.Collection<OccurrenceIF> |
ConversionUtils.getOccurrencesOfType(TopicIF topic,
TopicIF occType)
|
Uses of OccurrenceIF in ontopoly.model |
---|
Methods in ontopoly.model that return types with arguments of type OccurrenceIF | |
---|---|
java.util.List<OccurrenceIF> |
OccurrenceField.getValues(Topic topic)
|
Uses of OccurrenceIF in ontopoly.utils |
---|
Methods in ontopoly.utils that return OccurrenceIF | |
---|---|
static OccurrenceIF |
OntopolyModelUtils.findOccurrence(TopicIF oType,
TopicIF topicIF)
|
static OccurrenceIF |
OntopolyModelUtils.findOccurrence(TopicIF oType,
TopicIF topicIF,
LocatorIF datatype,
java.util.Collection<TopicIF> scope)
|
static OccurrenceIF |
OntopolyModelUtils.makeOccurrence(TopicIF otype,
TopicIF topicIF,
java.lang.String value,
LocatorIF datatype,
java.util.Collection<TopicIF> scope)
|
Methods in ontopoly.utils that return types with arguments of type OccurrenceIF | |
---|---|
static java.util.List<OccurrenceIF> |
OntopolyModelUtils.findOccurrences(TopicIF oType,
TopicIF topicIF)
|
static java.util.List<OccurrenceIF> |
OntopolyModelUtils.findOccurrences(TopicIF oType,
TopicIF topicIF,
java.util.Collection<TopicIF> scope)
|
static java.util.List<OccurrenceIF> |
OntopolyModelUtils.findOccurrences(TopicIF oType,
TopicIF topicIF,
LocatorIF datatype)
|
static java.util.List<OccurrenceIF> |
OntopolyModelUtils.findOccurrences(TopicIF oType,
TopicIF topicIF,
LocatorIF datatype,
java.util.Collection<TopicIF> scope)
|
static java.util.List<OccurrenceIF> |
OntopolyModelUtils.findOccurrences(TopicIF oType,
TopicIF topicIF,
java.lang.String value,
java.util.Collection<TopicIF> scope)
|
static java.util.List<OccurrenceIF> |
OntopolyModelUtils.findOccurrences(TopicIF oType,
TopicIF topicIF,
java.lang.String value,
LocatorIF datatype,
java.util.Collection<TopicIF> scope)
|
Methods in ontopoly.utils with parameters of type OccurrenceIF | |
---|---|
static org.apache.wicket.util.resource.IResourceStream |
OccurrenceWebResource.getResourceStream(OccurrenceIF occ)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |