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:
java.io.Serializable,java.lang.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 java.lang.StringLOG_RESOURCE_BUNDLEresource 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 voidbuildFromXMLElement(org.w3c.dom.Element aElement, XMLParser aParser, XMLParser.ParsingOptions aOptions)Overridden to provide custom XML representation.java.net.URLfindAbsoluteUrl(ResourceManager aResourceManager)Computes the absolute URL for this import, using the relative location or name, whichever is specified by this import object.java.lang.StringgetLocation()Gets the location of this import's target.java.lang.StringgetName()Gets the name of this import's target.protected XmlizationInfogetXmlizationInfo()To be implemented by subclasses to return information describing how to represent this object in XML.voidsetLocation(java.lang.String aUri)Sets the location of this import's target.voidsetName(java.lang.String aName)Sets the name of this import's target.voidsetSuffix(java.lang.String suffix)voidtoXML(org.xml.sax.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 java.lang.String LOG_RESOURCE_BUNDLE
resource bundle for log messages- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:ImportGets the name of this import's target.
-
setName
public void setName(java.lang.String aName)
Description copied from interface:ImportSets the name of this import's target.
-
getLocation
public java.lang.String getLocation()
Description copied from interface:ImportGets the location of this import's target.- Specified by:
getLocationin interfaceImport- Returns:
- a URI specifying the location of this import's target.
-
setLocation
public void setLocation(java.lang.String aUri)
Description copied from interface:ImportSets the location of this import's target.- Specified by:
setLocationin interfaceImport- Parameters:
aUri- a URI specifying the location of this import's target.
-
setSuffix
public void setSuffix(java.lang.String suffix)
-
findAbsoluteUrl
public java.net.URL findAbsoluteUrl(ResourceManager aResourceManager) throws InvalidXMLException
Description copied from interface:ImportComputes the absolute URL for this import, using the relative location or name, whichever is specified by this import object.- Specified by:
findAbsoluteUrlin 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(org.w3c.dom.Element aElement, XMLParser aParser, XMLParser.ParsingOptions aOptions) throws InvalidXMLExceptionOverridden to provide custom XML representation.- Specified by:
buildFromXMLElementin interfaceXMLizable- Overrides:
buildFromXMLElementin 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(org.xml.sax.ContentHandler aContentHandler, boolean aWriteDefaultNamespaceAttribute) throws org.xml.sax.SAXExceptionOverridden to provide custom XML representation.- Specified by:
toXMLin interfaceXMLizable- Overrides:
toXMLin 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:
org.xml.sax.SAXException- pass thru- See Also:
XMLizable.toXML(ContentHandler)
-
getXmlizationInfo
protected XmlizationInfo getXmlizationInfo()
Description copied from class:MetaDataObject_implTo be implemented by subclasses to return information describing how to represent this object in XML.- Specified by:
getXmlizationInfoin classMetaDataObject_impl- Returns:
- information defining this object's XML representation
- See Also:
MetaDataObject_impl.getXmlizationInfo()
-
-