You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by bc...@apache.org on 2004/02/04 14:24:53 UTC

cvs commit: xml-fop/src/java/org/apache/fop/fo/properties AutoLength.java BorderWidthPropertyMaker.java CompoundPropertyMaker.java LengthProperty.java LineHeightPropertyMaker.java ListProperty.java NumberProperty.java

bckfnn      2004/02/04 05:24:53

  Modified:    src/java/org/apache/fop/fo BoxPropShorthandParser.java
               src/java/org/apache/fop/fo/properties AutoLength.java
                        BorderWidthPropertyMaker.java
                        CompoundPropertyMaker.java LengthProperty.java
                        LineHeightPropertyMaker.java ListProperty.java
                        NumberProperty.java
  Log:
  Fix javadocs warnings caused by the recent moves of property classes and
  makers.
  
  Revision  Changes    Path
  1.10      +1 -1      xml-fop/src/java/org/apache/fop/fo/BoxPropShorthandParser.java
  
  Index: BoxPropShorthandParser.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/BoxPropShorthandParser.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- BoxPropShorthandParser.java	2 Feb 2004 16:08:24 -0000	1.9
  +++ BoxPropShorthandParser.java	4 Feb 2004 13:24:53 -0000	1.10
  @@ -70,7 +70,7 @@
        * 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,
  
  
  
  1.2       +2 -2      xml-fop/src/java/org/apache/fop/fo/properties/AutoLength.java
  
  Index: AutoLength.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/properties/AutoLength.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AutoLength.java	2 Feb 2004 16:08:26 -0000	1.1
  +++ AutoLength.java	4 Feb 2004 13:24:53 -0000	1.2
  @@ -69,7 +69,7 @@
       //    }
   
       /**
  -     * @see org.apache.fop.fo.Property#getString()
  +     * @see org.apache.fop.fo.properties.Property#getString()
        */
       public String getString() {
           return "auto";
  
  
  
  1.4       +2 -2      xml-fop/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java
  
  Index: BorderWidthPropertyMaker.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/properties/BorderWidthPropertyMaker.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BorderWidthPropertyMaker.java	2 Feb 2004 16:08:26 -0000	1.3
  +++ BorderWidthPropertyMaker.java	4 Feb 2004 13:24:53 -0000	1.4
  @@ -81,7 +81,7 @@
       /**
        * 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,
  
  
  
  1.3       +2 -2      xml-fop/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java
  
  Index: CompoundPropertyMaker.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/properties/CompoundPropertyMaker.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- CompoundPropertyMaker.java	2 Feb 2004 16:08:26 -0000	1.2
  +++ CompoundPropertyMaker.java	4 Feb 2004 13:24:53 -0000	1.3
  @@ -86,7 +86,7 @@
       }
   
       /**
  -     * @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);
  
  
  
  1.2       +2 -2      xml-fop/src/java/org/apache/fop/fo/properties/LengthProperty.java
  
  Index: LengthProperty.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/properties/LengthProperty.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LengthProperty.java	2 Feb 2004 16:08:26 -0000	1.1
  +++ LengthProperty.java	4 Feb 2004 13:24:53 -0000	1.2
  @@ -103,7 +103,7 @@
           }
   
           /**
  -         * @see Property.Maker#convertProperty
  +         * @see PropertyMaker#convertProperty
            */
           public Property convertProperty(Property p,
                                           PropertyList propertyList,
  
  
  
  1.4       +3 -3      xml-fop/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java
  
  Index: LineHeightPropertyMaker.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/properties/LineHeightPropertyMaker.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- LineHeightPropertyMaker.java	2 Feb 2004 16:08:26 -0000	1.3
  +++ LineHeightPropertyMaker.java	4 Feb 2004 13:24:53 -0000	1.4
  @@ -74,7 +74,7 @@
   
       /**
        * 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 @@
       /**
        * 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
  
  
  
  1.2       +2 -2      xml-fop/src/java/org/apache/fop/fo/properties/ListProperty.java
  
  Index: ListProperty.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/properties/ListProperty.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ListProperty.java	2 Feb 2004 16:08:26 -0000	1.1
  +++ ListProperty.java	4 Feb 2004 13:24:53 -0000	1.2
  @@ -73,7 +73,7 @@
           }
   
           /**
  -         * @see Property.Maker#convertProperty
  +         * @see PropertyMaker#convertProperty
            */
           public Property convertProperty(Property p,
                                           PropertyList propertyList, FObj fo) {
  
  
  
  1.2       +2 -2      xml-fop/src/java/org/apache/fop/fo/properties/NumberProperty.java
  
  Index: NumberProperty.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/properties/NumberProperty.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NumberProperty.java	2 Feb 2004 16:08:26 -0000	1.1
  +++ NumberProperty.java	4 Feb 2004 13:24:53 -0000	1.2
  @@ -73,7 +73,7 @@
           }
   
           /**
  -         * @see Property.Maker#convertProperty
  +         * @see PropertyMaker#convertProperty
            */
           public Property convertProperty(Property p,
                                           PropertyList propertyList, FObj fo) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org