]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
style changes only
authorWilliam Victor Mote <vmote@apache.org>
Tue, 15 Jul 2003 16:18:50 +0000 (16:18 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Tue, 15 Jul 2003 16:18:50 +0000 (16:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196716 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/datatypes/FODimension.java
src/java/org/apache/fop/fo/SpaceProperty.java
src/java/org/apache/fop/fo/StringProperty.java
src/java/org/apache/fop/fo/TextInfo.java
src/java/org/apache/fop/fo/expr/PropertyParser.java

index e8d8d3a55a78a31417172e5032d78bc1f4ebe377..1e15945e6be01b99cdcd72377172425f154528aa 100644 (file)
@@ -57,13 +57,15 @@ package org.apache.fop.datatypes;
  */
 public class FODimension {
 
+    /** distance (in millipoints) on the inline-progression-direction */
     public int ipd;
+    /** distance (in millipoints) on the block-progression-direction */
     public int bpd;
 
     /**
      * Constructor
-     * @param ipd length (in millipoints ??) of the inline-progression-direction
-     * @param bpd length (in millipoints ??) of the block-progression-direction
+     * @param ipd length (in millipoints) of the inline-progression-direction
+     * @param bpd length (in millipoints) of the block-progression-direction
      */
     public FODimension(int ipd, int bpd) {
         this.ipd = ipd;
index d0fac678ec2fd5cd3ebcee3a9e3898462b4d1848..fde4e6a8c018c03feb015ee6d5a8c6b8e5bb9e47 100644 (file)
@@ -3,34 +3,34 @@
  * ============================================================================
  *                    The Apache Software License, Version 1.1
  * ============================================================================
- * 
+ *
  * Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without modifica-
  * tion, are permitted provided that the following conditions are met:
- * 
+ *
  * 1. Redistributions of source code must retain the above copyright notice,
  *    this list of conditions and the following disclaimer.
- * 
+ *
  * 2. Redistributions in binary form must reproduce the above copyright notice,
  *    this list of conditions and the following disclaimer in the documentation
  *    and/or other materials provided with the distribution.
- * 
+ *
  * 3. The end-user documentation included with the redistribution, if any, must
  *    include the following acknowledgment: "This product includes software
  *    developed by the Apache Software Foundation (http://www.apache.org/)."
  *    Alternately, this acknowledgment may appear in the software itself, if
  *    and wherever such third-party acknowledgments normally appear.
- * 
+ *
  * 4. The names "FOP" and "Apache Software Foundation" must not be used to
  *    endorse or promote products derived from this software without prior
  *    written permission. For written permission, please contact
  *    apache@apache.org.
- * 
+ *
  * 5. Products derived from this software may not be called "Apache", nor may
  *    "Apache" appear in their name, without prior written permission of the
  *    Apache Software Foundation.
- * 
+ *
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  * ============================================================================
- * 
+ *
  * This software consists of voluntary contributions made by many individuals
  * on behalf of the Apache Software Foundation and was originally created by
  * James Tauber <jtauber@jtauber.com>. For more information on the Apache
  * Software Foundation, please see <http://www.apache.org/>.
- */ 
+ */
 package org.apache.fop.fo;
 
 import org.apache.fop.datatypes.Space;
 import org.apache.fop.datatypes.LengthRange;
 
+/**
+ * Base class used for handling properties of the fo:space-before and
+ * fo:space-after variety. It is extended by org.apache.fop.fo.properties.GenericSpace,
+ * which is extended by many other properties.
+ */
 public class SpaceProperty extends Property {
 
+    /**
+     * Inner class used to create new instances of SpaceProperty
+     */
     public static class Maker extends LengthRangeProperty.Maker {
+
+        /**
+         * @param name name of the property whose Maker is to be created
+         */
         protected Maker(String name) {
             super(name);
         }
@@ -64,19 +76,31 @@ public class SpaceProperty extends Property {
 
     private Space space;
 
+    /**
+     * @param space the Space object (datatype) to be stored here
+     */
     public SpaceProperty(Space space) {
         this.space = space;
     }
 
+    /**
+     * @return the Space (datatype) object contained here
+     */
     public Space getSpace() {
         return this.space;
     }
 
-    /* Space extends LengthRange */
+    /**
+     * Space extends LengthRange.
+     * @return the Space (datatype) object contained here
+     */
     public LengthRange getLengthRange() {
         return this.space;
     }
 
+    /**
+     * @return the Space (datatype) object contained here
+     */
     public Object getObject() {
         return this.space;
     }
index ef5fa90283c3994293ff7a9f4b461efac53baa56..2986e7ca56483cf277d9a5d87d32bb159e5469d3 100644 (file)
@@ -3,34 +3,34 @@
  * ============================================================================
  *                    The Apache Software License, Version 1.1
  * ============================================================================
- * 
+ *
  * Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without modifica-
  * tion, are permitted provided that the following conditions are met:
- * 
+ *
  * 1. Redistributions of source code must retain the above copyright notice,
  *    this list of conditions and the following disclaimer.
- * 
+ *
  * 2. Redistributions in binary form must reproduce the above copyright notice,
  *    this list of conditions and the following disclaimer in the documentation
  *    and/or other materials provided with the distribution.
- * 
+ *
  * 3. The end-user documentation included with the redistribution, if any, must
  *    include the following acknowledgment: "This product includes software
  *    developed by the Apache Software Foundation (http://www.apache.org/)."
  *    Alternately, this acknowledgment may appear in the software itself, if
  *    and wherever such third-party acknowledgments normally appear.
- * 
+ *
  * 4. The names "FOP" and "Apache Software Foundation" must not be used to
  *    endorse or promote products derived from this software without prior
  *    written permission. For written permission, please contact
  *    apache@apache.org.
- * 
+ *
  * 5. Products derived from this software may not be called "Apache", nor may
  *    "Apache" appear in their name, without prior written permission of the
  *    Apache Software Foundation.
- * 
+ *
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  * ============================================================================
- * 
+ *
  * This software consists of voluntary contributions made by many individuals
  * on behalf of the Apache Software Foundation and was originally created by
  * James Tauber <jtauber@jtauber.com>. For more information on the Apache
  * Software Foundation, please see <http://www.apache.org/>.
- */ 
+ */
 package org.apache.fop.fo;
 
-
+/**
+ * Exists primarily as a container for its Maker inner class, which is
+ * extended by many string-based FO property classes.
+ */
 public class StringProperty extends Property {
 
+    /**
+     * Inner class for making instances of StringProperty
+     */
     public static class Maker extends Property.Maker {
 
+        /**
+         * @param propName name of property for which to create a Maker
+         */
         public Maker(String propName) {
             super(propName);
         }
 
+        /**
+         * Make a new StringProperty object
+         * @param propertyList not used
+         * @param value String value of the new object
+         * @param fo not used
+         * @return the StringProperty object
+         */
         public Property make(PropertyList propertyList, String value,
                              FObj fo) {
             // Work around the fact that most String properties are not
@@ -91,15 +107,24 @@ public class StringProperty extends Property {
 
     private String str;
 
+    /**
+     * @param str String value to place in this object
+     */
     public StringProperty(String str) {
         this.str = str;
         // System.err.println("Set StringProperty: " + str);
     }
 
+    /**
+     * @return the Object equivalent of this property
+     */
     public Object getObject() {
         return this.str;
     }
 
+    /**
+     * @return the String equivalent of this property
+     */
     public String getString() {
         return this.str;
     }
index fadaec46457d5f6bb1f085fe013044437ca2c5fb..860bbd119ea6033473d05bbdd4d73acee613314b 100644 (file)
@@ -60,26 +60,37 @@ import org.apache.fop.fo.properties.TextTransform;
  * Collection of properties used in
  */
 public class TextInfo {
+    /** object containing the font information */
     public FontState fs;
+    /** fo:color property */
     public ColorType color;
+    /** fo:wrap-option property */
     public int wrapOption;
-    public boolean bWrap ; // True if wrap-option = WRAP
+    /** fo:wrap-option property: true if wrapOption = WRAP */
+    public boolean bWrap ;
+    /** fo:white-space-collapse property*/
     public int whiteSpaceCollapse;
+    /** fo:vertical-align property */
     public int verticalAlign;
+    /** fo:line-height property */
     public int lineHeight;
+    /** fo:text-transform property */
     public int textTransform = TextTransform.NONE;
 
     // Props used for calculating inline-progression-dimension
+    /** fo:word-spacing property */
     public SpaceVal wordSpacing;
+    /** fo:letter-spacing property */
     public SpaceVal letterSpacing;
 
-    // Add hyphenation props too
+    /** can this text be hyphenated? */
     public boolean bCanHyphenate = true;
 
-    // Textdecoration
+    /** fo:text-decoration property: is text underlined? */
     public boolean underlined = false;
+    /** fo:text-decoration property: is text overlined? */
     public boolean overlined = false;
+    /** fo:text-decoration property: is text overstriked? */
     public boolean lineThrough = false;
 
 }
-
index 8fea26bc67ed9f8f820352114fa5bc24f28a4c37..3d2c9b3e2afe02b55500de9c46f6a51746935eb1 100644 (file)
@@ -3,34 +3,34 @@
  * ============================================================================
  *                    The Apache Software License, Version 1.1
  * ============================================================================
- * 
+ *
  * Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without modifica-
  * tion, are permitted provided that the following conditions are met:
- * 
+ *
  * 1. Redistributions of source code must retain the above copyright notice,
  *    this list of conditions and the following disclaimer.
- * 
+ *
  * 2. Redistributions in binary form must reproduce the above copyright notice,
  *    this list of conditions and the following disclaimer in the documentation
  *    and/or other materials provided with the distribution.
- * 
+ *
  * 3. The end-user documentation included with the redistribution, if any, must
  *    include the following acknowledgment: "This product includes software
  *    developed by the Apache Software Foundation (http://www.apache.org/)."
  *    Alternately, this acknowledgment may appear in the software itself, if
  *    and wherever such third-party acknowledgments normally appear.
- * 
+ *
  * 4. The names "FOP" and "Apache Software Foundation" must not be used to
  *    endorse or promote products derived from this software without prior
  *    written permission. For written permission, please contact
  *    apache@apache.org.
- * 
+ *
  * 5. Products derived from this software may not be called "Apache", nor may
  *    "Apache" appear in their name, without prior written permission of the
  *    Apache Software Foundation.
- * 
+ *
  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  * ============================================================================
- * 
+ *
  * This software consists of voluntary contributions made by many individuals
  * on behalf of the Apache Software Foundation and was originally created by
  * James Tauber <jtauber@jtauber.com>. For more information on the Apache
  * Software Foundation, please see <http://www.apache.org/>.
- */ 
+ */
 package org.apache.fop.fo.expr;
 
 import org.apache.fop.datatypes.ColorType;
@@ -65,7 +65,7 @@ import org.apache.fop.fo.ColorTypeProperty;
 import java.util.HashMap;
 
 /**
- * Class to parse XSL FO property expression.
+ * Class to parse XSL-FO property expressions.
  * This class is heavily based on the epxression parser in James Clark's
  * XT, an XSLT processor.
  */
@@ -291,7 +291,7 @@ public class PropertyParser extends PropertyTokenizer {
              * Get the length base value object from the Maker. If null, then
              * this property can't have % values. Treat it as a real number.
              */
-            double pcval = new Double(currentTokenValue.substring(0, 
+            double pcval = new Double(currentTokenValue.substring(0,
                         currentTokenValue.length() - 1)).doubleValue() / 100.0;
             // LengthBase lbase = this.propInfo.getPercentLengthBase();
             PercentBase pcBase = this.propInfo.getPercentBase();