From: Finn Bock Date: Wed, 4 Feb 2004 13:24:53 +0000 (+0000) Subject: Fix javadocs warnings caused by the recent moves of property classes and X-Git-Tag: Root_Temp_KnuthStylePageBreaking~859 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a50659dd2da987ffda829a6416042c35306959ec;p=xmlgraphics-fop.git Fix javadocs warnings caused by the recent moves of property classes and makers. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197329 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/fo/BoxPropShorthandParser.java b/src/java/org/apache/fop/fo/BoxPropShorthandParser.java index 51c8f0610..e84f4fd84 100644 --- a/src/java/org/apache/fop/fo/BoxPropShorthandParser.java +++ b/src/java/org/apache/fop/fo/BoxPropShorthandParser.java @@ -70,7 +70,7 @@ public class BoxPropShorthandParser extends GenericShorthandParser { * Set the given property based on the number of values set. * Example: padding, border-width, border-color, border-style, margin * @see org.apache.fop.fo.GenericShorthandParser#convertValueForProperty( - * int, ListProperty, Property.Maker, PropertyList) + * int, ListProperty, PropertyMaker, PropertyList) */ protected Property convertValueForProperty(int propId, ListProperty listProperty, diff --git a/src/java/org/apache/fop/fo/properties/AutoLength.java b/src/java/org/apache/fop/fo/properties/AutoLength.java index 0730a289c..19ba5ed34 100644 --- a/src/java/org/apache/fop/fo/properties/AutoLength.java +++ b/src/java/org/apache/fop/fo/properties/AutoLength.java @@ -69,7 +69,7 @@ public class AutoLength extends LengthProperty { // } /** - * @see org.apache.fop.fo.Property#getString() + * @see org.apache.fop.fo.properties.Property#getString() */ public String getString() { return "auto"; diff --git a/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java b/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java index ff6849696..98b8a5539 100644 --- a/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java +++ b/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java @@ -81,7 +81,7 @@ public class BorderWidthPropertyMaker extends LengthProperty.Maker { /** * Check the value of the style property and return a length of 0 when * the style is NONE. - * @see org.apache.fop.fo.Property.Maker#get(int, PropertyList, boolean, boolean) + * @see org.apache.fop.fo.properties.PropertyMaker#get(int, PropertyList, boolean, boolean) */ public Property get(int subpropId, PropertyList propertyList, diff --git a/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java b/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java index 96cc148e7..e75777cb3 100644 --- a/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java +++ b/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java @@ -86,7 +86,7 @@ public class CompoundPropertyMaker extends PropertyMaker { } /** - * @see org.apache.fop.fo.Property.Maker#useGeneric(Property.Maker) + * @see org.apache.fop.fo.properties.PropertyMaker#useGeneric(PropertyMaker) */ public void useGeneric(PropertyMaker generic) { super.useGeneric(generic); diff --git a/src/java/org/apache/fop/fo/properties/LengthProperty.java b/src/java/org/apache/fop/fo/properties/LengthProperty.java index 2588f6f64..14c2cfecd 100644 --- a/src/java/org/apache/fop/fo/properties/LengthProperty.java +++ b/src/java/org/apache/fop/fo/properties/LengthProperty.java @@ -103,7 +103,7 @@ public class LengthProperty extends Property implements Length { } /** - * @see Property.Maker#convertProperty + * @see PropertyMaker#convertProperty */ public Property convertProperty(Property p, PropertyList propertyList, diff --git a/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java b/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java index 743786194..4192e6fee 100644 --- a/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java +++ b/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java @@ -74,7 +74,7 @@ public class LineHeightPropertyMaker extends LengthProperty.Maker { /** * Make a property as normal, and save the specified value. - * @see Property.Maker#make(PropertyList, String, FObj) + * @see PropertyMaker#make(PropertyList, String, FObj) */ public Property make(PropertyList propertyList, String value, FObj fo) throws FOPException { @@ -86,7 +86,7 @@ public class LineHeightPropertyMaker extends LengthProperty.Maker { /** * Recalculate the line-height value based on the nearest specified * value. - * @see Property.Maker#compute(PropertyList) + * @see PropertyMaker#compute(PropertyList) */ protected Property compute(PropertyList propertyList) throws FOPException { // recalculate based on last specified value diff --git a/src/java/org/apache/fop/fo/properties/ListProperty.java b/src/java/org/apache/fop/fo/properties/ListProperty.java index 7ed6ac0f4..89ed8e38d 100644 --- a/src/java/org/apache/fop/fo/properties/ListProperty.java +++ b/src/java/org/apache/fop/fo/properties/ListProperty.java @@ -73,7 +73,7 @@ public class ListProperty extends Property { } /** - * @see Property.Maker#convertProperty + * @see PropertyMaker#convertProperty */ public Property convertProperty(Property p, PropertyList propertyList, FObj fo) { diff --git a/src/java/org/apache/fop/fo/properties/NumberProperty.java b/src/java/org/apache/fop/fo/properties/NumberProperty.java index cccb86ddf..bd8b6d29a 100644 --- a/src/java/org/apache/fop/fo/properties/NumberProperty.java +++ b/src/java/org/apache/fop/fo/properties/NumberProperty.java @@ -73,7 +73,7 @@ public class NumberProperty extends Property { } /** - * @see Property.Maker#convertProperty + * @see PropertyMaker#convertProperty */ public Property convertProperty(Property p, PropertyList propertyList, FObj fo) {