Class FsIndexCollection_impl
java.lang.Object
org.apache.uima.resource.metadata.impl.MetaDataObject_impl
org.apache.uima.resource.metadata.impl.FsIndexCollection_impl
- All Implemented Interfaces:
Serializable
,Cloneable
,FsIndexCollection
,MetaDataObject
,XMLizable
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
MetaDataObject_impl.MetaDataAttr, MetaDataObject_impl.SerialContext, MetaDataObject_impl.Serializer
-
Field Summary
Fields inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
serialContext
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addFsIndex
(FsIndexDescription aFsIndexDescription) Adds an FS Index description to this collection.Gets the description of this FS Index Collection.Retrieves the FS Index descriptions that are part of this collection.Import[]
Gets the imports declared by this FS Index Collection.getName()
Gets the vendor of this FS Index Collection.protected XmlizationInfo
To be implemented by subclasses to return information describing how to represent this object in XML.void
removeFsIndex
(FsIndexDescription aFsIndexDescription) Removes an FS Index description from this collection.void
Resolves any import declarations in this FS Index Collection, adding the imported FsIndexDescriptions directly onto this FsIndexCollection'sfsIndexes
list.void
resolveImports
(Collection<String> aAlreadyImportedFsIndexURLs, ResourceManager aResourceManager) Deprecated.void
resolveImports
(ResourceManager aResourceManager) Resolves any import declarations in this FS Index Collection, adding the imported FsIndexDescriptions directly onto this FsIndexCollection'sfsIndexes
list.void
setDescription
(String aDescription) Sets the description of this FS Index Collection.void
setFsIndexes
(FsIndexDescription... aFSIndexes) Retrieves the FS Index descriptions that are part of this collection.void
setImports
(Import... aImports) Sets the imports declared by this FS Index Collection.void
Sets the name of this FS Index Collection.void
Sets the vendor of this FS Index Collection.void
setVersion
(String aVersion) Sets the version number of this FS Index Collection.Methods inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
buildFromXMLElement, buildFromXMLElement, clone, equals, getAdditionalAttributes, getAttributeClass, getAttributeValue, getInfoset, getMatchingNode, getPropertyDescriptors, getPropertyXmlInfo, getRelativePathBase, getSerialContext, getSourceUrl, getSourceUrlString, getWrapperClass, getXMLAttributes, hashCode, isModifiable, listAttributes, readArrayPropertyValueFromXMLElement, readMapPropertyFromXml, readPropertyValueFromXMLElement, readUnknownPropertyValueFromXMLElement, resolveSettings, setAttributeValue, setInfoset, setSourceUrl, setSourceUrlIfNull, toString, toXML, toXML, toXML, toXML, valueIsNullOrEmptyArray, writeArrayPropertyAsElement, writeMapPropertyToXml, writePropertyAsElement
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.uima.resource.metadata.MetaDataObject
clone, equals, getAttributeValue, getSourceUrl, getSourceUrlString, isModifiable, listAttributes, setAttributeValue, setSourceUrl
Methods inherited from interface org.apache.uima.util.XMLizable
buildFromXMLElement, buildFromXMLElement, toXML, toXML, toXML, toXML
-
Constructor Details
-
FsIndexCollection_impl
public FsIndexCollection_impl()
-
-
Method Details
-
getName
- Specified by:
getName
in interfaceFsIndexCollection
- Returns:
- the name of this FS Index Collection, null if none has been specified.
-
setName
Description copied from interface:FsIndexCollection
Sets the name of this FS Index Collection.- Specified by:
setName
in interfaceFsIndexCollection
- Parameters:
aName
- the name of this FS Index Collection
-
getVersion
- Specified by:
getVersion
in interfaceFsIndexCollection
- Returns:
- the version number of this FS Index Collection, as a String, null if none has been specified.
-
setVersion
Description copied from interface:FsIndexCollection
Sets the version number of this FS Index Collection.- Specified by:
setVersion
in interfaceFsIndexCollection
- Parameters:
aVersion
- the version number of this FS Index Collection, as a String
-
getDescription
Description copied from interface:FsIndexCollection
Gets the description of this FS Index Collection.- Specified by:
getDescription
in interfaceFsIndexCollection
- Returns:
- the description of this FS Index Collection, null if none has been specified.
-
setDescription
Description copied from interface:FsIndexCollection
Sets the description of this FS Index Collection.- Specified by:
setDescription
in interfaceFsIndexCollection
- Parameters:
aDescription
- the description of this FS Index Collection
-
getVendor
Description copied from interface:FsIndexCollection
Gets the vendor of this FS Index Collection.- Specified by:
getVendor
in interfaceFsIndexCollection
- Returns:
- the vendor of this FS Index Collection, as a String
-
setVendor
Description copied from interface:FsIndexCollection
Sets the vendor of this FS Index Collection.- Specified by:
setVendor
in interfaceFsIndexCollection
- Parameters:
aVendor
- the vendor of this FS Index Collection, as a String, null if none has been specified.
-
getImports
Description copied from interface:FsIndexCollection
Gets the imports declared by this FS Index Collection.- Specified by:
getImports
in interfaceFsIndexCollection
- Returns:
- an array of imports declared by this FS Index Collection.
-
setImports
Description copied from interface:FsIndexCollection
Sets the imports declared by this FS Index Collection.- Specified by:
setImports
in interfaceFsIndexCollection
- Parameters:
aImports
- an array of imports declared by this FS Index Collection.
-
getFsIndexes
Description copied from interface:FsIndexCollection
Retrieves the FS Index descriptions that are part of this collection. These define the indexes that are used to iterate over annotations in theCAS
.- Specified by:
getFsIndexes
in interfaceFsIndexCollection
- Returns:
- a description of the FS Indexes that comprise this FS Index Collection
-
setFsIndexes
Description copied from interface:FsIndexCollection
Retrieves the FS Index descriptions that are part of this collection. These define the indexes that are used to iterate over annotations in theCAS
.- Specified by:
setFsIndexes
in interfaceFsIndexCollection
- Parameters:
aFSIndexes
- a description of the FS Indexes that comprise this FS Index Collection
-
addFsIndex
Description copied from interface:FsIndexCollection
Adds an FS Index description to this collection.- Specified by:
addFsIndex
in interfaceFsIndexCollection
- Parameters:
aFsIndexDescription
- the FS Index description to add
-
removeFsIndex
Description copied from interface:FsIndexCollection
Removes an FS Index description from this collection.- Specified by:
removeFsIndex
in interfaceFsIndexCollection
- Parameters:
aFsIndexDescription
- the FS Index description to remove (must be == with an FsIndexDescription in this collection, or this method will do nothing).
-
resolveImports
Description copied from interface:FsIndexCollection
Resolves any import declarations in this FS Index Collection, adding the imported FsIndexDescriptions directly onto this FsIndexCollection'sfsIndexes
list. The import elements are then deleted, so this results in a structure that is equivalent to the imported elements having been defined locally.- Specified by:
resolveImports
in interfaceFsIndexCollection
- Throws:
InvalidXMLException
- if either the import target does not exist or is invalid
-
resolveImports
Description copied from interface:FsIndexCollection
Resolves any import declarations in this FS Index Collection, adding the imported FsIndexDescriptions directly onto this FsIndexCollection'sfsIndexes
list. The import elements are then deleted, so this results in a structure that is equivalent to the imported elements having been defined locally.- Specified by:
resolveImports
in interfaceFsIndexCollection
- Parameters:
aResourceManager
- the Resource Manager used to locate FS Index Collections imported by name. For example, the path in which to locate these FS Index Collections can be set via theResourceManager.setDataPath(String)
method.- Throws:
InvalidXMLException
- if either the import target does not exist or is invalid
-
resolveImports
@Deprecated public void resolveImports(Collection<String> aAlreadyImportedFsIndexURLs, ResourceManager aResourceManager) throws InvalidXMLException Deprecated.Description copied from interface:FsIndexCollection
Resolves any import declarations in this FS Index Collection, adding the imported FsIndexDescriptions directly onto this FsIndexCollection'sfsIndexes
list. The import elements are then deleted, so this results in a structure that is equivalent to the imported elements having been defined locally.This version is used internally to resolve nested imports.
- Specified by:
resolveImports
in interfaceFsIndexCollection
- Parameters:
aAlreadyImportedFsIndexURLs
- URLs of already imported FS Index Collections, so we don't import them again.aResourceManager
- the Resource Manager used to locate FS Index Collections imported by name. For example, the path in which to locate these FS Index Collections can be set via theResourceManager.setDataPath(String)
method.- Throws:
InvalidXMLException
- if either the import target does not exist or is invalid
-
getXmlizationInfo
Description copied from class:MetaDataObject_impl
To be implemented by subclasses to return information describing how to represent this object in XML.- Specified by:
getXmlizationInfo
in classMetaDataObject_impl
- Returns:
- information defining this object's XML representation
-