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/pagination/ConditionalPageMasterReference.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/pagination/ConditionalPageMasterReference.java')
-rw-r--r-- | src/java/org/apache/fop/fo/pagination/ConditionalPageMasterReference.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/java/org/apache/fop/fo/pagination/ConditionalPageMasterReference.java b/src/java/org/apache/fop/fo/pagination/ConditionalPageMasterReference.java index 4076140aa..c3d705de2 100644 --- a/src/java/org/apache/fop/fo/pagination/ConditionalPageMasterReference.java +++ b/src/java/org/apache/fop/fo/pagination/ConditionalPageMasterReference.java @@ -52,7 +52,7 @@ public class ConditionalPageMasterReference extends FObj { } /** - * @see org.apache.fop.fo.FObj#bind(PropertyList) + * {@inheritDoc} */ public void bind(PropertyList pList) throws FOPException { masterReference = pList.get(PR_MASTER_REFERENCE).getString(); @@ -66,7 +66,7 @@ public class ConditionalPageMasterReference extends FObj { } /** - * @see org.apache.fop.fo.FONode#startOfNode + * {@inheritDoc} */ protected void startOfNode() throws FOPException { getConcreteParent().addConditionalPageMasterReference(this); @@ -77,7 +77,7 @@ public class ConditionalPageMasterReference extends FObj { } /** - * @see org.apache.fop.fo.FONode#validateChildNode(Locator, String, String) + * {@inheritDoc} * XSL Content Model: empty */ protected void validateChildNode(Locator loc, String nsURI, String localName) @@ -154,12 +154,12 @@ public class ConditionalPageMasterReference extends FObj { return this.pagePosition; } - /** @see org.apache.fop.fo.FONode#getLocalName() */ + /** {@inheritDoc} */ public String getLocalName() { return "conditional-page-master-reference"; } - /** @see org.apache.fop.fo.FObj#getNameId() */ + /** {@inheritDoc} */ public int getNameId() { return FO_CONDITIONAL_PAGE_MASTER_REFERENCE; } |