diff options
Diffstat (limited to 'src/java/org/apache/fop/fo/pagination/SinglePageMasterReference.java')
-rw-r--r-- | src/java/org/apache/fop/fo/pagination/SinglePageMasterReference.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/java/org/apache/fop/fo/pagination/SinglePageMasterReference.java b/src/java/org/apache/fop/fo/pagination/SinglePageMasterReference.java index 623b50de7..68be2b82e 100644 --- a/src/java/org/apache/fop/fo/pagination/SinglePageMasterReference.java +++ b/src/java/org/apache/fop/fo/pagination/SinglePageMasterReference.java @@ -54,7 +54,7 @@ public class SinglePageMasterReference 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(); @@ -65,7 +65,7 @@ public class SinglePageMasterReference extends FObj } /** - * @see org.apache.fop.fo.FONode#startOfNode + * {@inheritDoc} */ protected void startOfNode() throws FOPException { PageSequenceMaster pageSequenceMaster = (PageSequenceMaster) parent; @@ -73,7 +73,7 @@ public class SinglePageMasterReference 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) @@ -81,7 +81,7 @@ public class SinglePageMasterReference extends FObj invalidChildError(loc, nsURI, localName); } - /** @see org.apache.fop.fo.pagination.SubSequenceSpecifier */ + /** {@inheritDoc} */ public String getNextPageMasterName(boolean isOddPage, boolean isFirstPage, boolean isLastPage, @@ -94,14 +94,14 @@ public class SinglePageMasterReference extends FObj } } - /** @see org.apache.fop.fo.pagination.SubSequenceSpecifier#reset() */ + /** {@inheritDoc} */ public void reset() { this.state = FIRST; } - /** @see org.apache.fop.fo.pagination.SubSequenceSpecifier#goToPrevious() */ + /** {@inheritDoc} */ public boolean goToPrevious() { if (state == FIRST) { return false; @@ -111,17 +111,17 @@ public class SinglePageMasterReference extends FObj } } - /** @see org.apache.fop.fo.pagination.SubSequenceSpecifier#hasPagePositionLast() */ + /** {@inheritDoc} */ public boolean hasPagePositionLast() { return false; } - /** @see org.apache.fop.fo.FONode#getLocalName() */ + /** {@inheritDoc} */ public String getLocalName() { return "single-page-master-reference"; } - /** @see org.apache.fop.fo.FObj#getNameId() */ + /** {@inheritDoc} */ public int getNameId() { return FO_SINGLE_PAGE_MASTER_REFERENCE; } |