diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2007-07-18 17:37:14 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2007-07-18 17:37:14 +0000 |
commit | 4e921e05c7204e345525cf3e3312d8b8342d4b63 (patch) | |
tree | 05812a48470db3fa5acfb64156704485e86327ed /src/java/org/apache/fop/fo/flow/Footnote.java | |
parent | 8fcc676984fbb4b8023f79a51dc2fb9fdff1bbb4 (diff) | |
download | xmlgraphics-fop-4e921e05c7204e345525cf3e3312d8b8342d4b63.tar.gz xmlgraphics-fop-4e921e05c7204e345525cf3e3312d8b8342d4b63.zip |
* Javadoc update: use {@inheritDoc} instead of @see where applicable, removal of some @author tags
* Additional code cleanup: removal of unused imports (mainly in the fo.flow package)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@557337 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/Footnote.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/Footnote.java | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Footnote.java b/src/java/org/apache/fop/fo/flow/Footnote.java index 0f22b441e..95c9f25bc 100644 --- a/src/java/org/apache/fop/fo/flow/Footnote.java +++ b/src/java/org/apache/fop/fo/flow/Footnote.java @@ -26,7 +26,6 @@ import org.apache.fop.fo.FONode; import org.apache.fop.fo.FObj; import org.apache.fop.fo.PropertyList; import org.apache.fop.fo.ValidationException; -import org.apache.fop.fo.properties.CommonAccessibility; /** * Class modelling the fo:footnote object. @@ -47,14 +46,14 @@ public class Footnote extends FObj { } /** - * @see org.apache.fop.fo.FObj#bind(PropertyList) + * {@inheritDoc} */ public void bind(PropertyList pList) throws FOPException { // No active properties -> do nothing. } /** - * @see org.apache.fop.fo.FONode#startOfNode + * {@inheritDoc} */ protected void startOfNode() throws FOPException { getFOEventHandler().startFootnote(this); @@ -63,7 +62,7 @@ public class Footnote extends FObj { /** * Make sure content model satisfied, if so then tell the * FOEventHandler that we are at the end of the flow. - * @see org.apache.fop.fo.FONode#endOfNode + * {@inheritDoc} */ protected void endOfNode() throws FOPException { super.endOfNode(); @@ -74,7 +73,7 @@ public class Footnote extends FObj { } /** - * @see org.apache.fop.fo.FONode#validateChildNode(Locator, String, String) + * {@inheritDoc} * XSL Content Model: (inline,footnote-body) * @todo implement additional constraint: A fo:footnote is not permitted * to have a fo:float, fo:footnote, or fo:marker as a descendant. @@ -100,7 +99,7 @@ public class Footnote extends FObj { } /** - * @see org.apache.fop.fo.FONode#addChildNode(FONode) + * {@inheritDoc} */ public void addChildNode(FONode child) { if (((FObj)child).getNameId() == FO_INLINE) { @@ -126,13 +125,13 @@ public class Footnote extends FObj { return footnoteBody; } - /** @see org.apache.fop.fo.FONode#getLocalName() */ + /** {@inheritDoc} */ public String getLocalName() { return "footnote"; } /** - * @see org.apache.fop.fo.FObj#getNameId() + * {@inheritDoc} */ public int getNameId() { return FO_FOOTNOTE; |