diff options
author | Joerg Pietschmann <pietsch@apache.org> | 2006-10-07 21:00:13 +0000 |
---|---|---|
committer | Joerg Pietschmann <pietsch@apache.org> | 2006-10-07 21:00:13 +0000 |
commit | ee1706ac5f0a773b31c12f0291fd7e30f22a7840 (patch) | |
tree | 06d5774fd0794cc14930f458247f761469512540 /src/java/org/apache/fop/fo | |
parent | e7486da571264b21eba4724902db64b94da789c1 (diff) | |
download | xmlgraphics-fop-ee1706ac5f0a773b31c12f0291fd7e30f22a7840.tar.gz xmlgraphics-fop-ee1706ac5f0a773b31c12f0291fd7e30f22a7840.zip |
Fixed a few JavaDoc errors. Removed some apparently unused/obsolete methods.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@454018 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo')
10 files changed, 25 insertions, 26 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Marker.java b/src/java/org/apache/fop/fo/flow/Marker.java index f9c61d90f..1c2efa52c 100644 --- a/src/java/org/apache/fop/fo/flow/Marker.java +++ b/src/java/org/apache/fop/fo/flow/Marker.java @@ -263,7 +263,7 @@ public class Marker extends FObjMixed { } /** - * @see org.xml.sax.Attributes#getURI() + * @see org.xml.sax.Attributes#getURI(int) */ public String getURI(int index) { if (attribs != null @@ -277,7 +277,7 @@ public class Marker extends FObjMixed { } /** - * @see org.xml.sax.Attributes#getLocalName() + * @see org.xml.sax.Attributes#getLocalName(int) */ public String getLocalName(int index) { if (attribs != null @@ -291,7 +291,7 @@ public class Marker extends FObjMixed { } /** - * @see org.xml.sax.Attributes#getQName() + * @see org.xml.sax.Attributes#getQName(int) */ public String getQName(int index) { if (attribs != null @@ -306,14 +306,14 @@ public class Marker extends FObjMixed { /** * Default implementation; not used - * @see org.xml.sax.Attributes#getType() + * @see org.xml.sax.Attributes#getType(int) */ public String getType(int index) { return "CDATA"; } /** - * @see org.xml.sax.Attributes#getValue() + * @see org.xml.sax.Attributes#getValue(int) */ public String getValue(int index) { if (attribs != null @@ -327,7 +327,7 @@ public class Marker extends FObjMixed { } /** - * @see org.xml.sax.Attributes#getIndex() + * @see org.xml.sax.Attributes#getIndex(String, String) */ public int getIndex(String name, String namespace) { int index = -1; @@ -344,7 +344,7 @@ public class Marker extends FObjMixed { } /** - * @see org.xml.sax.Attributes#getIndex() + * @see org.xml.sax.Attributes#getIndex(String) */ public int getIndex(String qname) { int index = -1; @@ -361,7 +361,7 @@ public class Marker extends FObjMixed { /** * Default implementation; not used - * @see org.xml.sax.Attributes#getType() + * @see org.xml.sax.Attributes#getType(String, String) */ public String getType(String name, String namespace) { return "CDATA"; @@ -369,14 +369,14 @@ public class Marker extends FObjMixed { /** * Default implementation; not used - * @see org.xml.sax.Attributes#getType() + * @see org.xml.sax.Attributes#getType(String) */ public String getType(String qname) { return "CDATA"; } /** - * @see org.xml.sax.Attributes#getValue() + * @see org.xml.sax.Attributes#getValue(String, String) */ public String getValue(String name, String namespace) { int index = getIndex(name, namespace); @@ -387,7 +387,7 @@ public class Marker extends FObjMixed { } /** - * @see org.xml.sax.Attributes#getValue() + * @see org.xml.sax.Attributes#getValue(String) */ public String getValue(String qname) { int index = getIndex(qname); @@ -397,4 +397,4 @@ public class Marker extends FObjMixed { return null; } } -}
\ No newline at end of file +} diff --git a/src/java/org/apache/fop/fo/flow/TableBody.java b/src/java/org/apache/fop/fo/flow/TableBody.java index 8b0420e2f..20b60df95 100644 --- a/src/java/org/apache/fop/fo/flow/TableBody.java +++ b/src/java/org/apache/fop/fo/flow/TableBody.java @@ -91,7 +91,7 @@ public class TableBody extends TableFObj { } /** - * @see org.apache.fop.fo.FONode#processNode() + * @see org.apache.fop.fo.FONode#processNode(String, Locator, Attributes, PropertyList) */ public void processNode(String elementName, Locator locator, Attributes attlist, PropertyList pList) @@ -406,7 +406,6 @@ public class TableBody extends TableFObj { /** * Checks whether the previous cell had 'ends-row="true"' * - * @param currentCell the cell for which the question is asked * @return true if: * a) there is a previous cell, which * had ends-row="true" diff --git a/src/java/org/apache/fop/fo/properties/BackgroundPositionShorthandParser.java b/src/java/org/apache/fop/fo/properties/BackgroundPositionShorthandParser.java index cc1c98323..8bf79a242 100644 --- a/src/java/org/apache/fop/fo/properties/BackgroundPositionShorthandParser.java +++ b/src/java/org/apache/fop/fo/properties/BackgroundPositionShorthandParser.java @@ -31,12 +31,12 @@ import org.apache.fop.fo.expr.PropertyException; public class BackgroundPositionShorthandParser extends GenericShorthandParser { /** - * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty() + * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty(int, Property, PropertyMaker, PropertyList) */ public Property getValueForProperty(int propId, - Property property, - PropertyMaker maker, - PropertyList propertyList) + Property property, + PropertyMaker maker, + PropertyList propertyList) throws PropertyException { int index = -1; diff --git a/src/java/org/apache/fop/fo/properties/FontShorthandParser.java b/src/java/org/apache/fop/fo/properties/FontShorthandParser.java index 1f2994233..b07bd0629 100644 --- a/src/java/org/apache/fop/fo/properties/FontShorthandParser.java +++ b/src/java/org/apache/fop/fo/properties/FontShorthandParser.java @@ -31,7 +31,7 @@ import org.apache.fop.fo.expr.PropertyException; public class FontShorthandParser extends GenericShorthandParser { /** - * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty() + * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty(int, Property, PropertyMaker, PropertyList) */ public Property getValueForProperty(int propId, Property property, diff --git a/src/java/org/apache/fop/fo/properties/GenericShorthandParser.java b/src/java/org/apache/fop/fo/properties/GenericShorthandParser.java index 6eb7046cf..766c9e896 100644 --- a/src/java/org/apache/fop/fo/properties/GenericShorthandParser.java +++ b/src/java/org/apache/fop/fo/properties/GenericShorthandParser.java @@ -49,7 +49,7 @@ public class GenericShorthandParser implements ShorthandParser { } /** - * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty() + * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty(int, Property, PropertyMaker, PropertyList) */ public Property getValueForProperty(int propId, Property property, diff --git a/src/java/org/apache/fop/fo/properties/LengthRangeProperty.java b/src/java/org/apache/fop/fo/properties/LengthRangeProperty.java index de5dd9831..68f85056e 100644 --- a/src/java/org/apache/fop/fo/properties/LengthRangeProperty.java +++ b/src/java/org/apache/fop/fo/properties/LengthRangeProperty.java @@ -94,7 +94,7 @@ public class LengthRangeProperty extends Property implements CompoundDatatype { /** - * @see org.apache.fop.fo.properties.PropertyMaker#getSubprop() + * @see org.apache.fop.fo.properties.PropertyMaker#getSubprop(Property, int, Property) */ protected Property setSubprop(Property baseProperty, int subpropertyId, Property subproperty) { diff --git a/src/java/org/apache/fop/fo/properties/PageBreakShorthandParser.java b/src/java/org/apache/fop/fo/properties/PageBreakShorthandParser.java index 8f8f24b9f..95ba938b0 100644 --- a/src/java/org/apache/fop/fo/properties/PageBreakShorthandParser.java +++ b/src/java/org/apache/fop/fo/properties/PageBreakShorthandParser.java @@ -30,7 +30,7 @@ import org.apache.fop.fo.expr.PropertyException; public class PageBreakShorthandParser implements ShorthandParser { /** - * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty() + * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty(int, Property, PropertyMaker, PropertyList) */ public Property getValueForProperty(int propId, Property property, diff --git a/src/java/org/apache/fop/fo/properties/PositionShorthandParser.java b/src/java/org/apache/fop/fo/properties/PositionShorthandParser.java index 914af4f1c..d26f35bd5 100755 --- a/src/java/org/apache/fop/fo/properties/PositionShorthandParser.java +++ b/src/java/org/apache/fop/fo/properties/PositionShorthandParser.java @@ -29,7 +29,7 @@ import org.apache.fop.fo.PropertyList; public class PositionShorthandParser implements ShorthandParser { /** - * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty() + * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty(int, Property, PropertyMaker, PropertyList) */ public Property getValueForProperty(int propId, Property property, diff --git a/src/java/org/apache/fop/fo/properties/ReferenceOrientationMaker.java b/src/java/org/apache/fop/fo/properties/ReferenceOrientationMaker.java index 87ade2cde..124b2e559 100644 --- a/src/java/org/apache/fop/fo/properties/ReferenceOrientationMaker.java +++ b/src/java/org/apache/fop/fo/properties/ReferenceOrientationMaker.java @@ -31,7 +31,7 @@ public class ReferenceOrientationMaker extends Maker { /** * Constructor * @param propId the Constant Id for the property to be made - * @see org.apache.fop.fo.properties.PropertyMaker#PropertyMaker(propId) + * @see org.apache.fop.fo.properties.NumberProperty.Maker#PropertyMaker(propId) */ public ReferenceOrientationMaker(int propId) { super(propId); @@ -60,4 +60,4 @@ public class ReferenceOrientationMaker extends Maker { } } -}
\ No newline at end of file +} diff --git a/src/java/org/apache/fop/fo/properties/WhiteSpaceShorthandParser.java b/src/java/org/apache/fop/fo/properties/WhiteSpaceShorthandParser.java index 2e228e8a6..10fc75e93 100644 --- a/src/java/org/apache/fop/fo/properties/WhiteSpaceShorthandParser.java +++ b/src/java/org/apache/fop/fo/properties/WhiteSpaceShorthandParser.java @@ -32,7 +32,7 @@ import org.apache.fop.fo.expr.PropertyException; public class WhiteSpaceShorthandParser implements ShorthandParser { /** - * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty() + * @see org.apache.fop.fo.properties.ShorthandParser#getValueForProperty(int, Property, PropertyMaker, PropertyList) */ public Property getValueForProperty(int propId, Property property, PropertyMaker maker, PropertyList propertyList) |