]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fix javadocs warnings caused by the recent moves of property classes and
authorFinn Bock <bckfnn@apache.org>
Wed, 4 Feb 2004 13:24:53 +0000 (13:24 +0000)
committerFinn Bock <bckfnn@apache.org>
Wed, 4 Feb 2004 13:24:53 +0000 (13:24 +0000)
makers.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197329 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/BoxPropShorthandParser.java
src/java/org/apache/fop/fo/properties/AutoLength.java
src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java
src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java
src/java/org/apache/fop/fo/properties/LengthProperty.java
src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java
src/java/org/apache/fop/fo/properties/ListProperty.java
src/java/org/apache/fop/fo/properties/NumberProperty.java

index 51c8f061058fb13837a3eceb0dc08ff9c8f76447..e84f4fd845174c0062157a47463570d9b50aaeeb 100644 (file)
@@ -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,
index 0730a289c307ce317cc623abb3654e6ed124cdb2..19ba5ed34fdfaf9a45bca3652d7a84b33b8dad7b 100644 (file)
@@ -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";
index ff68496962f0656e1174ed69aa9060bb5bdcbdf6..98b8a553927b85224639d28f24db64eb6b15cc04 100644 (file)
@@ -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,
index 96cc148e7edeb4c91eca5013177e3e2ba100eaa8..e75777cb34ad7f3a3c50d1928a7c40d31f15830d 100644 (file)
@@ -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);
index 2588f6f646f5e34198bdb993476a483c0c267f05..14c2cfecd88c9c97541e638cd021514321ab4b41 100644 (file)
@@ -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,
index 7437861946c5e0a8073a5b16767f5513b83914b0..4192e6fee58dc67828d0e2e6eae7439fba8511d8 100644 (file)
@@ -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
index 7ed6ac0f4b93212733a4540ba872b81340219dd2..89ed8e38d569b05088073c963670c070699f7cbe 100644 (file)
@@ -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) {
index cccb86ddf79a822b927772399e437fb8d84bd93e..bd8b6d29af079a0f690de41f30fb9cfa88297f6f 100644 (file)
@@ -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) {