aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/util/DOMBuilderContentHandlerFactory.java
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2007-07-17 19:29:40 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2007-07-17 19:29:40 +0000
commit1b5c727a2d4ca6497ebabdd5f2261837fce55194 (patch)
tree9f7f4f3ebdf8497abafb8e04c232288a6bb2f708 /src/java/org/apache/fop/util/DOMBuilderContentHandlerFactory.java
parent725096997b8e75b68257849bbecfba0cc65443bc (diff)
downloadxmlgraphics-fop-1b5c727a2d4ca6497ebabdd5f2261837fce55194.tar.gz
xmlgraphics-fop-1b5c727a2d4ca6497ebabdd5f2261837fce55194.zip
Undo changes of r556112
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@557035 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/util/DOMBuilderContentHandlerFactory.java')
-rw-r--r--src/java/org/apache/fop/util/DOMBuilderContentHandlerFactory.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/java/org/apache/fop/util/DOMBuilderContentHandlerFactory.java b/src/java/org/apache/fop/util/DOMBuilderContentHandlerFactory.java
index 11ac96da8..50bcbb5cf 100644
--- a/src/java/org/apache/fop/util/DOMBuilderContentHandlerFactory.java
+++ b/src/java/org/apache/fop/util/DOMBuilderContentHandlerFactory.java
@@ -52,12 +52,12 @@ public class DOMBuilderContentHandlerFactory implements ContentHandlerFactory {
this.domImplementation = domImplementation;
}
- /** @see org.apache.fop.util.ContentHandlerFactory#getSupportedNamespaces() */
+ /** @inheritDoc org.apache.fop.util.ContentHandlerFactory#getSupportedNamespaces() */
public String[] getSupportedNamespaces() {
return new String[] {namespaceURI};
}
- /** @see org.apache.fop.util.ContentHandlerFactory#createContentHandler() */
+ /** @inheritDoc org.apache.fop.util.ContentHandlerFactory#createContentHandler() */
public ContentHandler createContentHandler() throws SAXException {
return new Handler();
}
@@ -77,21 +77,21 @@ public class DOMBuilderContentHandlerFactory implements ContentHandlerFactory {
}
/**
- * @see org.apache.fop.util.ContentHandlerFactory.ObjectSource#getObject()
+ * @inheritDoc org.apache.fop.util.ContentHandlerFactory.ObjectSource#getObject()
*/
public Object getObject() {
return getDocument();
}
/**
- * @see org.apache.fop.util.ContentHandlerFactory.ObjectSource
+ * @inheritDoc org.apache.fop.util.ContentHandlerFactory.ObjectSource
*/
public void setObjectBuiltListener(ObjectBuiltListener listener) {
this.obListener = listener;
}
/**
- * @see org.apache.fop.util.DelegatingContentHandler#startDocument()
+ * @inheritDoc org.apache.fop.util.DelegatingContentHandler#startDocument()
*/
public void startDocument() throws SAXException {
//Suppress startDocument() call if doc has not been set, yet. It will be done later.
@@ -101,7 +101,7 @@ public class DOMBuilderContentHandlerFactory implements ContentHandlerFactory {
}
/**
- * @see org.apache.fop.util.DelegatingContentHandler
+ * @inheritDoc org.apache.fop.util.DelegatingContentHandler
*/
public void startElement(String uri, String localName, String qName, Attributes atts)
throws SAXException {
@@ -125,7 +125,7 @@ public class DOMBuilderContentHandlerFactory implements ContentHandlerFactory {
}
/**
- * @see org.apache.fop.util.DelegatingContentHandler#endDocument()
+ * @inheritDoc org.apache.fop.util.DelegatingContentHandler#endDocument()
*/
public void endDocument() throws SAXException {
super.endDocument();