From 80bb62e2ad7d48c778fde55958208cd01b3b2384 Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Fri, 8 Nov 2002 14:18:24 +0000 Subject: [PATCH] Added @param attrSet to constructor Javadoc comment. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195460 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/fo/flow/FoBasicLink.java | 1 + src/org/apache/fop/fo/flow/FoBidiOverride.java | 1 + src/org/apache/fop/fo/flow/FoBlock.java | 1 + src/org/apache/fop/fo/flow/FoBlockContainer.java | 1 + src/org/apache/fop/fo/flow/FoCharacter.java | 1 + src/org/apache/fop/fo/flow/FoExternalGraphic.java | 1 + src/org/apache/fop/fo/flow/FoFloat.java | 1 + src/org/apache/fop/fo/flow/FoFootnote.java | 1 + src/org/apache/fop/fo/flow/FoFootnoteBody.java | 1 + src/org/apache/fop/fo/flow/FoInitialPropertySet.java | 1 + src/org/apache/fop/fo/flow/FoInline.java | 1 + src/org/apache/fop/fo/flow/FoInlineContainer.java | 1 + src/org/apache/fop/fo/flow/FoInstreamForeignObject.java | 1 + src/org/apache/fop/fo/flow/FoLeader.java | 1 + src/org/apache/fop/fo/flow/FoListBlock.java | 1 + src/org/apache/fop/fo/flow/FoListItem.java | 1 + src/org/apache/fop/fo/flow/FoListItemBody.java | 1 + src/org/apache/fop/fo/flow/FoListItemLabel.java | 1 + src/org/apache/fop/fo/flow/FoMarker.java | 1 + src/org/apache/fop/fo/flow/FoMultiCase.java | 1 + src/org/apache/fop/fo/flow/FoMultiProperties.java | 1 + src/org/apache/fop/fo/flow/FoMultiPropertySet.java | 1 + src/org/apache/fop/fo/flow/FoMultiSwitch.java | 1 + src/org/apache/fop/fo/flow/FoMultiToggle.java | 1 + src/org/apache/fop/fo/flow/FoNoFo.java | 1 + src/org/apache/fop/fo/flow/FoPageNumber.java | 1 + src/org/apache/fop/fo/flow/FoPageNumberCitation.java | 1 + src/org/apache/fop/fo/flow/FoRetrieveMarker.java | 1 + src/org/apache/fop/fo/flow/FoTable.java | 1 + src/org/apache/fop/fo/flow/FoTableAndCaption.java | 1 + src/org/apache/fop/fo/flow/FoTableBody.java | 1 + src/org/apache/fop/fo/flow/FoTableCaption.java | 1 + src/org/apache/fop/fo/flow/FoTableCell.java | 1 + src/org/apache/fop/fo/flow/FoTableColumn.java | 1 + src/org/apache/fop/fo/flow/FoTableFooter.java | 1 + src/org/apache/fop/fo/flow/FoTableHeader.java | 1 + src/org/apache/fop/fo/flow/FoTableRow.java | 1 + src/org/apache/fop/fo/flow/FoWrapper.java | 1 + 38 files changed, 38 insertions(+) diff --git a/src/org/apache/fop/fo/flow/FoBasicLink.java b/src/org/apache/fop/fo/flow/FoBasicLink.java index 056c3f9ff..cd7ad3309 100644 --- a/src/org/apache/fop/fo/flow/FoBasicLink.java +++ b/src/org/apache/fop/fo/flow/FoBasicLink.java @@ -99,6 +99,7 @@ public class FoBasicLink extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoBasicLink (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoBidiOverride.java b/src/org/apache/fop/fo/flow/FoBidiOverride.java index cbf68b45f..aeefbbc09 100644 --- a/src/org/apache/fop/fo/flow/FoBidiOverride.java +++ b/src/org/apache/fop/fo/flow/FoBidiOverride.java @@ -86,6 +86,7 @@ public class FoBidiOverride extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoBidiOverride (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoBlock.java b/src/org/apache/fop/fo/flow/FoBlock.java index 02facf0d0..8410f2abd 100644 --- a/src/org/apache/fop/fo/flow/FoBlock.java +++ b/src/org/apache/fop/fo/flow/FoBlock.java @@ -112,6 +112,7 @@ public class FoBlock extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoBlock (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoBlockContainer.java b/src/org/apache/fop/fo/flow/FoBlockContainer.java index 0255963a6..c04d07710 100644 --- a/src/org/apache/fop/fo/flow/FoBlockContainer.java +++ b/src/org/apache/fop/fo/flow/FoBlockContainer.java @@ -98,6 +98,7 @@ public class FoBlockContainer extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoBlockContainer (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoCharacter.java b/src/org/apache/fop/fo/flow/FoCharacter.java index 2f51d97f4..0cfc5358a 100644 --- a/src/org/apache/fop/fo/flow/FoCharacter.java +++ b/src/org/apache/fop/fo/flow/FoCharacter.java @@ -106,6 +106,7 @@ public class FoCharacter extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoCharacter (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoExternalGraphic.java b/src/org/apache/fop/fo/flow/FoExternalGraphic.java index 8e050ad6f..8de06b8df 100644 --- a/src/org/apache/fop/fo/flow/FoExternalGraphic.java +++ b/src/org/apache/fop/fo/flow/FoExternalGraphic.java @@ -104,6 +104,7 @@ public class FoExternalGraphic extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoExternalGraphic (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoFloat.java b/src/org/apache/fop/fo/flow/FoFloat.java index a494c59c8..c49041d30 100644 --- a/src/org/apache/fop/fo/flow/FoFloat.java +++ b/src/org/apache/fop/fo/flow/FoFloat.java @@ -77,6 +77,7 @@ public class FoFloat extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoFloat (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoFootnote.java b/src/org/apache/fop/fo/flow/FoFootnote.java index 5fa780eff..083fa507a 100644 --- a/src/org/apache/fop/fo/flow/FoFootnote.java +++ b/src/org/apache/fop/fo/flow/FoFootnote.java @@ -76,6 +76,7 @@ public class FoFootnote extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoFootnote (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoFootnoteBody.java b/src/org/apache/fop/fo/flow/FoFootnoteBody.java index 5023e899f..3b98fdeef 100644 --- a/src/org/apache/fop/fo/flow/FoFootnoteBody.java +++ b/src/org/apache/fop/fo/flow/FoFootnoteBody.java @@ -76,6 +76,7 @@ public class FoFootnoteBody extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoFootnoteBody (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoInitialPropertySet.java b/src/org/apache/fop/fo/flow/FoInitialPropertySet.java index 3cb110f93..b83cec481 100644 --- a/src/org/apache/fop/fo/flow/FoInitialPropertySet.java +++ b/src/org/apache/fop/fo/flow/FoInitialPropertySet.java @@ -91,6 +91,7 @@ public class FoInitialPropertySet extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoInitialPropertySet (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoInline.java b/src/org/apache/fop/fo/flow/FoInline.java index 75239347e..218fa806a 100644 --- a/src/org/apache/fop/fo/flow/FoInline.java +++ b/src/org/apache/fop/fo/flow/FoInline.java @@ -101,6 +101,7 @@ public class FoInline extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoInline (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoInlineContainer.java b/src/org/apache/fop/fo/flow/FoInlineContainer.java index b43ab69b3..5e7bd81ea 100644 --- a/src/org/apache/fop/fo/flow/FoInlineContainer.java +++ b/src/org/apache/fop/fo/flow/FoInlineContainer.java @@ -98,6 +98,7 @@ public class FoInlineContainer extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoInlineContainer (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoInstreamForeignObject.java b/src/org/apache/fop/fo/flow/FoInstreamForeignObject.java index cf56a8456..44971d23e 100644 --- a/src/org/apache/fop/fo/flow/FoInstreamForeignObject.java +++ b/src/org/apache/fop/fo/flow/FoInstreamForeignObject.java @@ -103,6 +103,7 @@ public class FoInstreamForeignObject extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoInstreamForeignObject (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoLeader.java b/src/org/apache/fop/fo/flow/FoLeader.java index 74df7d96c..62f03e9b1 100644 --- a/src/org/apache/fop/fo/flow/FoLeader.java +++ b/src/org/apache/fop/fo/flow/FoLeader.java @@ -104,6 +104,7 @@ public class FoLeader extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoLeader (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoListBlock.java b/src/org/apache/fop/fo/flow/FoListBlock.java index 1ad27c8c2..74083a33e 100644 --- a/src/org/apache/fop/fo/flow/FoListBlock.java +++ b/src/org/apache/fop/fo/flow/FoListBlock.java @@ -91,6 +91,7 @@ public class FoListBlock extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoListBlock (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoListItem.java b/src/org/apache/fop/fo/flow/FoListItem.java index cbf601732..7777e74d5 100644 --- a/src/org/apache/fop/fo/flow/FoListItem.java +++ b/src/org/apache/fop/fo/flow/FoListItem.java @@ -90,6 +90,7 @@ public class FoListItem extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoListItem (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoListItemBody.java b/src/org/apache/fop/fo/flow/FoListItemBody.java index beca76c9b..88bb1d58a 100644 --- a/src/org/apache/fop/fo/flow/FoListItemBody.java +++ b/src/org/apache/fop/fo/flow/FoListItemBody.java @@ -78,6 +78,7 @@ public class FoListItemBody extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoListItemBody (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoListItemLabel.java b/src/org/apache/fop/fo/flow/FoListItemLabel.java index 9772490a6..5e0f7be97 100644 --- a/src/org/apache/fop/fo/flow/FoListItemLabel.java +++ b/src/org/apache/fop/fo/flow/FoListItemLabel.java @@ -78,6 +78,7 @@ public class FoListItemLabel extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoListItemLabel (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoMarker.java b/src/org/apache/fop/fo/flow/FoMarker.java index 104526c09..4359de50c 100644 --- a/src/org/apache/fop/fo/flow/FoMarker.java +++ b/src/org/apache/fop/fo/flow/FoMarker.java @@ -69,6 +69,7 @@ public class FoMarker extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoMarker (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoMultiCase.java b/src/org/apache/fop/fo/flow/FoMultiCase.java index 5011084d0..55d204436 100644 --- a/src/org/apache/fop/fo/flow/FoMultiCase.java +++ b/src/org/apache/fop/fo/flow/FoMultiCase.java @@ -80,6 +80,7 @@ public class FoMultiCase extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoMultiCase (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoMultiProperties.java b/src/org/apache/fop/fo/flow/FoMultiProperties.java index b8597e1d0..7482104b0 100644 --- a/src/org/apache/fop/fo/flow/FoMultiProperties.java +++ b/src/org/apache/fop/fo/flow/FoMultiProperties.java @@ -77,6 +77,7 @@ public class FoMultiProperties extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoMultiProperties (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoMultiPropertySet.java b/src/org/apache/fop/fo/flow/FoMultiPropertySet.java index d4e2f62f8..6c7ac8a18 100644 --- a/src/org/apache/fop/fo/flow/FoMultiPropertySet.java +++ b/src/org/apache/fop/fo/flow/FoMultiPropertySet.java @@ -77,6 +77,7 @@ public class FoMultiPropertySet extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoMultiPropertySet (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoMultiSwitch.java b/src/org/apache/fop/fo/flow/FoMultiSwitch.java index 92c151fe4..8e37ca87e 100644 --- a/src/org/apache/fop/fo/flow/FoMultiSwitch.java +++ b/src/org/apache/fop/fo/flow/FoMultiSwitch.java @@ -78,6 +78,7 @@ public class FoMultiSwitch extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoMultiSwitch (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoMultiToggle.java b/src/org/apache/fop/fo/flow/FoMultiToggle.java index 8863aa539..857477d22 100644 --- a/src/org/apache/fop/fo/flow/FoMultiToggle.java +++ b/src/org/apache/fop/fo/flow/FoMultiToggle.java @@ -78,6 +78,7 @@ public class FoMultiToggle extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoMultiToggle (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoNoFo.java b/src/org/apache/fop/fo/flow/FoNoFo.java index d6caa95e9..29541fb0f 100644 --- a/src/org/apache/fop/fo/flow/FoNoFo.java +++ b/src/org/apache/fop/fo/flow/FoNoFo.java @@ -69,6 +69,7 @@ public class FoNoFo extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoNoFo (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoPageNumber.java b/src/org/apache/fop/fo/flow/FoPageNumber.java index 7d1d81c5b..58f71e93b 100644 --- a/src/org/apache/fop/fo/flow/FoPageNumber.java +++ b/src/org/apache/fop/fo/flow/FoPageNumber.java @@ -102,6 +102,7 @@ public class FoPageNumber extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoPageNumber (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoPageNumberCitation.java b/src/org/apache/fop/fo/flow/FoPageNumberCitation.java index 4866775af..9a2527eba 100644 --- a/src/org/apache/fop/fo/flow/FoPageNumberCitation.java +++ b/src/org/apache/fop/fo/flow/FoPageNumberCitation.java @@ -103,6 +103,7 @@ public class FoPageNumberCitation extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoPageNumberCitation (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoRetrieveMarker.java b/src/org/apache/fop/fo/flow/FoRetrieveMarker.java index 73464deba..21c14ceac 100644 --- a/src/org/apache/fop/fo/flow/FoRetrieveMarker.java +++ b/src/org/apache/fop/fo/flow/FoRetrieveMarker.java @@ -78,6 +78,7 @@ public class FoRetrieveMarker extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoRetrieveMarker (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTable.java b/src/org/apache/fop/fo/flow/FoTable.java index deabbb4d9..a37907e58 100644 --- a/src/org/apache/fop/fo/flow/FoTable.java +++ b/src/org/apache/fop/fo/flow/FoTable.java @@ -103,6 +103,7 @@ public class FoTable extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTable (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTableAndCaption.java b/src/org/apache/fop/fo/flow/FoTableAndCaption.java index 98e3786d1..822e6b036 100644 --- a/src/org/apache/fop/fo/flow/FoTableAndCaption.java +++ b/src/org/apache/fop/fo/flow/FoTableAndCaption.java @@ -91,6 +91,7 @@ public class FoTableAndCaption extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTableAndCaption (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTableBody.java b/src/org/apache/fop/fo/flow/FoTableBody.java index ae659db8f..76a58125c 100644 --- a/src/org/apache/fop/fo/flow/FoTableBody.java +++ b/src/org/apache/fop/fo/flow/FoTableBody.java @@ -86,6 +86,7 @@ public class FoTableBody extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTableBody (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTableCaption.java b/src/org/apache/fop/fo/flow/FoTableCaption.java index b278f5093..fd3b551b8 100644 --- a/src/org/apache/fop/fo/flow/FoTableCaption.java +++ b/src/org/apache/fop/fo/flow/FoTableCaption.java @@ -88,6 +88,7 @@ public class FoTableCaption extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTableCaption (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTableCell.java b/src/org/apache/fop/fo/flow/FoTableCell.java index c872ab926..7dd1b04e0 100644 --- a/src/org/apache/fop/fo/flow/FoTableCell.java +++ b/src/org/apache/fop/fo/flow/FoTableCell.java @@ -98,6 +98,7 @@ public class FoTableCell extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTableCell (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTableColumn.java b/src/org/apache/fop/fo/flow/FoTableColumn.java index 39439d964..760c16434 100644 --- a/src/org/apache/fop/fo/flow/FoTableColumn.java +++ b/src/org/apache/fop/fo/flow/FoTableColumn.java @@ -86,6 +86,7 @@ public class FoTableColumn extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTableColumn (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTableFooter.java b/src/org/apache/fop/fo/flow/FoTableFooter.java index d827fe919..f94de3846 100644 --- a/src/org/apache/fop/fo/flow/FoTableFooter.java +++ b/src/org/apache/fop/fo/flow/FoTableFooter.java @@ -86,6 +86,7 @@ public class FoTableFooter extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTableFooter (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTableHeader.java b/src/org/apache/fop/fo/flow/FoTableHeader.java index 959fa1194..86074d941 100644 --- a/src/org/apache/fop/fo/flow/FoTableHeader.java +++ b/src/org/apache/fop/fo/flow/FoTableHeader.java @@ -86,6 +86,7 @@ public class FoTableHeader extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTableHeader (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoTableRow.java b/src/org/apache/fop/fo/flow/FoTableRow.java index a94968441..805bbabd2 100644 --- a/src/org/apache/fop/fo/flow/FoTableRow.java +++ b/src/org/apache/fop/fo/flow/FoTableRow.java @@ -93,6 +93,7 @@ public class FoTableRow extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoTableRow (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) diff --git a/src/org/apache/fop/fo/flow/FoWrapper.java b/src/org/apache/fop/fo/flow/FoWrapper.java index 65121d1ea..91083e8ba 100644 --- a/src/org/apache/fop/fo/flow/FoWrapper.java +++ b/src/org/apache/fop/fo/flow/FoWrapper.java @@ -69,6 +69,7 @@ public class FoWrapper extends FONode { * @param parent the parent FONode of this node * @param event the FoXMLEvent that triggered the creation of * this node + * @param attrSet the index of the attribute set applying to the node. */ public FoWrapper (FOTree foTree, FONode parent, FoXMLEvent event, int attrSet) -- 2.39.5