Class Import_impl
- java.lang.Object
-
- org.apache.uima.resource.metadata.impl.MetaDataObject_impl
-
- org.apache.uima.resource.metadata.impl.Import_impl
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Import
,MetaDataObject
,XMLizable
public class Import_impl extends MetaDataObject_impl implements Import
- See Also:
- Serialized Form
-
-
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 Modifier and Type Field Description protected static String
LOG_RESOURCE_BUNDLE
resource bundle for log messages-
Fields inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
serialContext
-
Fields inherited from interface org.apache.uima.resource.metadata.Import
EMPTY_IMPORTS
-
-
Constructor Summary
Constructors Constructor Description Import_impl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
buildFromXMLElement(Element aElement, XMLParser aParser, XMLParser.ParsingOptions aOptions)
Overridden to provide custom XML representation.URL
findAbsoluteUrl(ResourceManager aResourceManager)
Computes the absolute URL for this import, using the relative location or name, whichever is specified by this import object.String
getLocation()
Gets the location of this import's target.String
getName()
Gets the name of this import's target.protected XmlizationInfo
getXmlizationInfo()
To be implemented by subclasses to return information describing how to represent this object in XML.void
setLocation(String aUri)
Sets the location of this import's target.void
setName(String aName)
Sets the name of this import's target.void
setSuffix(String suffix)
void
toXML(ContentHandler aContentHandler, boolean aWriteDefaultNamespaceAttribute)
Overridden to provide custom XML representation.-
Methods inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
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, 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, toXML, toXML, toXML
-
-
-
-
Field Detail
-
LOG_RESOURCE_BUNDLE
protected static final String LOG_RESOURCE_BUNDLE
resource bundle for log messages- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:Import
Gets the name of this import's target.
-
setName
public void setName(String aName)
Description copied from interface:Import
Sets the name of this import's target.
-
getLocation
public String getLocation()
Description copied from interface:Import
Gets the location of this import's target.- Specified by:
getLocation
in interfaceImport
- Returns:
- a URI specifying the location of this import's target.
-
setLocation
public void setLocation(String aUri)
Description copied from interface:Import
Sets the location of this import's target.- Specified by:
setLocation
in interfaceImport
- Parameters:
aUri
- a URI specifying the location of this import's target.
-
setSuffix
public void setSuffix(String suffix)
-
findAbsoluteUrl
public URL findAbsoluteUrl(ResourceManager aResourceManager) throws InvalidXMLException
Description copied from interface:Import
Computes the absolute URL for this import, using the relative location or name, whichever is specified by this import object.- Specified by:
findAbsoluteUrl
in interfaceImport
- Parameters:
aResourceManager
- resource manager to use to do name lookups- Returns:
- the absolute URL for this import
- Throws:
InvalidXMLException
- if the import could not be resolved
-
buildFromXMLElement
public void buildFromXMLElement(Element aElement, XMLParser aParser, XMLParser.ParsingOptions aOptions) throws InvalidXMLException
Overridden to provide custom XML representation.- Specified by:
buildFromXMLElement
in interfaceXMLizable
- Overrides:
buildFromXMLElement
in classMetaDataObject_impl
- Parameters:
aElement
- the XML element that represents this object.aParser
- a reference to the UIMAXMLParser
. TheXMLParser.buildObject(Element)
method can be used to construct sub-objects.aOptions
- option settings- Throws:
InvalidXMLException
- if the input XML element does not specify a valid object- See Also:
XMLizable.buildFromXMLElement(org.w3c.dom.Element, org.apache.uima.util.XMLParser)
-
toXML
public void toXML(ContentHandler aContentHandler, boolean aWriteDefaultNamespaceAttribute) throws SAXException
Overridden to provide custom XML representation.- Specified by:
toXML
in interfaceXMLizable
- Overrides:
toXML
in classMetaDataObject_impl
- Parameters:
aContentHandler
- the content handler to which this object will write events that describe its XML representation.aWriteDefaultNamespaceAttribute
- whether the namespace of this element should be written as the default namespace. This should be done only for the root element, and it defaults to false.- Throws:
SAXException
- pass thru- See Also:
XMLizable.toXML(ContentHandler)
-
getXmlizationInfo
protected XmlizationInfo 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
- See Also:
MetaDataObject_impl.getXmlizationInfo()
-
-