Browse Source

Fix javadoc warnings.


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198016 13f79535-47bb-0310-9956-ffa450edef68
tags/Root_Temp_KnuthStylePageBreaking
Finn Bock 19 years ago
parent
commit
7cfeb5b14d

+ 4
- 4
src/java/org/apache/fop/area/Area.java View File

@@ -157,7 +157,7 @@ public class Area implements Serializable {
* 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 @@ public class Area implements Serializable {
* 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 @@ public class Area implements Serializable {
* 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 @@ public class Area implements Serializable {
* 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
- 1
src/java/org/apache/fop/fo/flow/BasicLink.java View File

@@ -98,7 +98,7 @@ public class BasicLink extends Inline {
}

/**
* @see org.apache.fop.fo.FONode#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
super.endOfNode();

+ 1
- 1
src/java/org/apache/fop/fo/flow/Block.java View File

@@ -184,7 +184,7 @@ public class Block extends FObjMixed {
}

/**
* @see org.apache.fop.fo.FONode#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
handleWhiteSpace();

+ 1
- 1
src/java/org/apache/fop/fo/flow/BlockContainer.java View File

@@ -70,7 +70,7 @@ public class BlockContainer extends FObj {
}
/**
* @see org.apache.fop.fo.FONode#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
getFOEventHandler().endBlockContainer(this);

+ 1
- 1
src/java/org/apache/fop/fo/flow/Float.java View File

@@ -59,7 +59,7 @@ public class Float 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (childNodes == null) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/Footnote.java View File

@@ -82,7 +82,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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
super.endOfNode();

+ 1
- 1
src/java/org/apache/fop/fo/flow/FootnoteBody.java View File

@@ -61,7 +61,7 @@ public class FootnoteBody 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (childNodes == null) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/Inline.java View File

@@ -102,7 +102,7 @@ public class Inline extends FObjMixed {


/**
* @see org.apache.fop.fo.FONode#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
getFOEventHandler().endInline(this);

+ 1
- 1
src/java/org/apache/fop/fo/flow/InstreamForeignObject.java View File

@@ -62,7 +62,7 @@ public class InstreamForeignObject 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (childNodes.size() != 1) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/ListBlock.java View File

@@ -74,7 +74,7 @@ public class ListBlock 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (!hasListItem) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/ListItem.java View File

@@ -99,7 +99,7 @@ public class ListItem 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (label == null || body == null) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/MultiProperties.java View File

@@ -75,7 +75,7 @@ public class MultiProperties 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (!hasMultiPropertySet || !hasWrapper) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/MultiSwitch.java View File

@@ -59,7 +59,7 @@ public class MultiSwitch extends FObj {

/**
* 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
- 1
src/java/org/apache/fop/fo/flow/TableAndCaption.java View File

@@ -85,7 +85,7 @@ public class TableAndCaption 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (!tableFound) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/TableCaption.java View File

@@ -69,7 +69,7 @@ public class TableCaption 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (childNodes == null) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/TableCell.java View File

@@ -181,7 +181,7 @@ public class TableCell 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (!blockItemFound) {

+ 1
- 1
src/java/org/apache/fop/fo/flow/TableRow.java View File

@@ -79,7 +79,7 @@ public class TableRow extends FObj {
}

/**
* @see org.apache.fop.fo.FONode#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (childNodes == null) {

+ 1
- 1
src/java/org/apache/fop/fo/pagination/Flow.java View File

@@ -94,7 +94,7 @@ public class Flow 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#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (!blockItemFound) {

+ 1
- 1
src/java/org/apache/fop/fo/pagination/LayoutMasterSet.java View File

@@ -87,7 +87,7 @@ public class LayoutMasterSet extends FObj {
}

/**
* @see org.apache.fop.fo.FONode#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (childNodes == null) {

+ 1
- 1
src/java/org/apache/fop/fo/pagination/RepeatablePageMasterAlternatives.java View File

@@ -71,7 +71,7 @@ public class RepeatablePageMasterAlternatives extends FObj
}

/**
* @see org.apache.fop.fo.FONode#end
* @see org.apache.fop.fo.FONode#endOfNode
*/
protected void endOfNode() throws SAXParseException {
if (childNodes == null) {

+ 1
- 1
src/java/org/apache/fop/fo/pagination/SimplePageMaster.java View File

@@ -140,7 +140,7 @@ public class SimplePageMaster extends FObj {

/**
* 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
- 1
src/java/org/apache/fop/fo/pagination/StaticContent.java View File

@@ -51,7 +51,7 @@ public class StaticContent extends Flow {
/**
* 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) {

Loading…
Cancel
Save