bckfnn 2004/10/07 12:47:47 Modified: src/java/org/apache/fop/area Area.java src/java/org/apache/fop/fo/flow BasicLink.java Block.java BlockContainer.java Float.java Footnote.java FootnoteBody.java Inline.java InstreamForeignObject.java ListBlock.java ListItem.java MultiProperties.java MultiSwitch.java TableAndCaption.java TableCaption.java TableCell.java TableRow.java src/java/org/apache/fop/fo/pagination Flow.java LayoutMasterSet.java RepeatablePageMasterAlternatives.java SimplePageMaster.java StaticContent.java Log: Fix javadoc warnings. Revision Changes Path 1.5 +4 -4 xml-fop/src/java/org/apache/fop/area/Area.java Index: Area.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/area/Area.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Area.java 22 Sep 2004 08:16:00 -0000 1.4 +++ Area.java 7 Oct 2004 19:47:46 -0000 1.5 @@ -157,7 +157,7 @@ * for this area. * * @param i the new inline progression dimension - * @see http://www.w3.org/TR/xsl/slice4.html#area-common + * @see <a href="http://www.w3.org/TR/xsl/slice4.html#area-common">ipd</a> */ public void setIPD(int i) { ipd = i; @@ -168,7 +168,7 @@ * for this area. * * @return the inline progression dimension - * @see http://www.w3.org/TR/xsl/slice4.html#area-common + * @see <a href="http://www.w3.org/TR/xsl/slice4.html#area-common">ipd</a> */ public int getIPD() { return ipd; @@ -179,7 +179,7 @@ * for this area. * * @param b the new block progression dimension - * @see http://www.w3.org/TR/xsl/slice4.html#area-common + * @see <a href="http://www.w3.org/TR/xsl/slice4.html#area-common">bpd</a> */ public void setBPD(int b) { bpd = b; @@ -190,7 +190,7 @@ * for this area. * * @return the block progression dimension - * @see http://www.w3.org/TR/xsl/slice4.html#area-common + * @see <a href="http://www.w3.org/TR/xsl/slice4.html#area-common">bpd</a> */ public int getBPD() { return bpd; 1.29 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/BasicLink.java Index: BasicLink.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/BasicLink.java,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- BasicLink.java 11 Sep 2004 17:11:58 -0000 1.28 +++ BasicLink.java 7 Oct 2004 19:47:46 -0000 1.29 @@ -98,7 +98,7 @@ } /** - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { super.endOfNode(); 1.41 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/Block.java Index: Block.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/Block.java,v retrieving revision 1.40 retrieving revision 1.41 diff -u -r1.40 -r1.41 --- Block.java 11 Sep 2004 17:11:58 -0000 1.40 +++ Block.java 7 Oct 2004 19:47:47 -0000 1.41 @@ -184,7 +184,7 @@ } /** - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { handleWhiteSpace(); 1.25 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/BlockContainer.java Index: BlockContainer.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/BlockContainer.java,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- BlockContainer.java 30 Sep 2004 19:56:24 -0000 1.24 +++ BlockContainer.java 7 Oct 2004 19:47:47 -0000 1.25 @@ -70,7 +70,7 @@ } /** - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { getFOEventHandler().endBlockContainer(this); 1.17 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/Float.java Index: Float.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/Float.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- Float.java 7 Sep 2004 20:47:09 -0000 1.16 +++ Float.java 7 Oct 2004 19:47:47 -0000 1.17 @@ -59,7 +59,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes == null) { 1.26 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/Footnote.java Index: Footnote.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/Footnote.java,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- Footnote.java 11 Sep 2004 17:11:58 -0000 1.25 +++ Footnote.java 7 Oct 2004 19:47:47 -0000 1.26 @@ -82,7 +82,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { super.endOfNode(); 1.21 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/FootnoteBody.java Index: FootnoteBody.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/FootnoteBody.java,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- FootnoteBody.java 6 Sep 2004 18:44:31 -0000 1.20 +++ FootnoteBody.java 7 Oct 2004 19:47:47 -0000 1.21 @@ -61,7 +61,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes == null) { 1.28 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/Inline.java Index: Inline.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/Inline.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- Inline.java 6 Sep 2004 18:44:31 -0000 1.27 +++ Inline.java 7 Oct 2004 19:47:47 -0000 1.28 @@ -102,7 +102,7 @@ /** - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { getFOEventHandler().endInline(this); 1.28 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/InstreamForeignObject.java Index: InstreamForeignObject.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/InstreamForeignObject.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- InstreamForeignObject.java 13 Sep 2004 12:39:24 -0000 1.27 +++ InstreamForeignObject.java 7 Oct 2004 19:47:47 -0000 1.28 @@ -62,7 +62,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes.size() != 1) { 1.30 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/ListBlock.java Index: ListBlock.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/ListBlock.java,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- ListBlock.java 11 Sep 2004 17:11:58 -0000 1.29 +++ ListBlock.java 7 Oct 2004 19:47:47 -0000 1.30 @@ -74,7 +74,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (!hasListItem) { 1.29 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/ListItem.java Index: ListItem.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/ListItem.java,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- ListItem.java 11 Sep 2004 17:11:58 -0000 1.28 +++ ListItem.java 7 Oct 2004 19:47:47 -0000 1.29 @@ -99,7 +99,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (label == null || body == null) { 1.16 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/MultiProperties.java Index: MultiProperties.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/MultiProperties.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- MultiProperties.java 7 Sep 2004 20:47:09 -0000 1.15 +++ MultiProperties.java 7 Oct 2004 19:47:47 -0000 1.16 @@ -75,7 +75,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (!hasMultiPropertySet || !hasWrapper) { 1.19 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/MultiSwitch.java Index: MultiSwitch.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/MultiSwitch.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- MultiSwitch.java 7 Sep 2004 20:47:10 -0000 1.18 +++ MultiSwitch.java 7 Oct 2004 19:47:47 -0000 1.19 @@ -59,7 +59,7 @@ /** * Make sure content model satisfied. - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes == null) { 1.20 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/TableAndCaption.java Index: TableAndCaption.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/TableAndCaption.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- TableAndCaption.java 7 Sep 2004 20:47:10 -0000 1.19 +++ TableAndCaption.java 7 Oct 2004 19:47:47 -0000 1.20 @@ -85,7 +85,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (!tableFound) { 1.20 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/TableCaption.java Index: TableCaption.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/TableCaption.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- TableCaption.java 7 Sep 2004 20:47:10 -0000 1.19 +++ TableCaption.java 7 Oct 2004 19:47:47 -0000 1.20 @@ -69,7 +69,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes == null) { 1.33 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/TableCell.java Index: TableCell.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/TableCell.java,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- TableCell.java 11 Sep 2004 17:11:58 -0000 1.32 +++ TableCell.java 7 Oct 2004 19:47:47 -0000 1.33 @@ -181,7 +181,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (!blockItemFound) { 1.35 +1 -1 xml-fop/src/java/org/apache/fop/fo/flow/TableRow.java Index: TableRow.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/flow/TableRow.java,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- TableRow.java 11 Sep 2004 17:11:58 -0000 1.34 +++ TableRow.java 7 Oct 2004 19:47:47 -0000 1.35 @@ -79,7 +79,7 @@ } /** - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes == null) { 1.33 +2 -2 xml-fop/src/java/org/apache/fop/fo/pagination/Flow.java Index: Flow.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/pagination/Flow.java,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Flow.java 11 Sep 2004 17:11:59 -0000 1.32 +++ Flow.java 7 Oct 2004 19:47:47 -0000 1.33 @@ -94,7 +94,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (!blockItemFound) { 1.24 +1 -1 xml-fop/src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java Index: LayoutMasterSet.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- LayoutMasterSet.java 5 Sep 2004 04:00:52 -0000 1.23 +++ LayoutMasterSet.java 7 Oct 2004 19:47:47 -0000 1.24 @@ -87,7 +87,7 @@ } /** - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes == null) { 1.18 +1 -1 xml-fop/src/java/org/apache/fop/fo/pagination/RepeatablePageMasterAlternatives.java Index: RepeatablePageMasterAlternatives.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/pagination/RepeatablePageMasterAlternatives.java,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- RepeatablePageMasterAlternatives.java 7 Sep 2004 20:14:51 -0000 1.17 +++ RepeatablePageMasterAlternatives.java 7 Oct 2004 19:47:47 -0000 1.18 @@ -71,7 +71,7 @@ } /** - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes == null) { 1.26 +1 -1 xml-fop/src/java/org/apache/fop/fo/pagination/SimplePageMaster.java Index: SimplePageMaster.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/pagination/SimplePageMaster.java,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- SimplePageMaster.java 29 Aug 2004 21:09:36 -0000 1.25 +++ SimplePageMaster.java 7 Oct 2004 19:47:47 -0000 1.26 @@ -140,7 +140,7 @@ /** * Make sure content model satisfied. - * @see org.apache.fop.fo.FONode#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (!hasRegionBody) { 1.27 +2 -2 xml-fop/src/java/org/apache/fop/fo/pagination/StaticContent.java Index: StaticContent.java =================================================================== RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/pagination/StaticContent.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- StaticContent.java 7 Sep 2004 20:47:10 -0000 1.26 +++ StaticContent.java 7 Oct 2004 19:47:47 -0000 1.27 @@ -51,7 +51,7 @@ /** * 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#end + * @see org.apache.fop.fo.FONode#endOfNode */ protected void endOfNode() throws SAXParseException { if (childNodes == null) {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]