]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Style fixes.
authorJeremias Maerki <jeremias@apache.org>
Wed, 14 Sep 2005 13:53:21 +0000 (13:53 +0000)
committerJeremias Maerki <jeremias@apache.org>
Wed, 14 Sep 2005 13:53:21 +0000 (13:53 +0000)
Assimilate toString() with SpaceProperty's toString().

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

src/java/org/apache/fop/fo/properties/CondLengthProperty.java

index a5188f2ebeddc23969d130baf06fd9cb7baba5ef..587caf8566c0dc0f9368bbe439f97a36954e500c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2005 The Apache Software Foundation.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -57,8 +57,7 @@ public class CondLengthProperty extends Property implements CompoundDatatype {
          * @see CompoundPropertyMaker#convertProperty
          */        
         public Property convertProperty(Property p, PropertyList propertyList, FObj fo)
-            throws PropertyException
-        {
+                    throws PropertyException {
             if (p instanceof KeepProperty) {
                 return p;
             }
@@ -125,18 +124,19 @@ public class CondLengthProperty extends Property implements CompoundDatatype {
 
     /**
      * Returns the computed length value.
+     * @param context The context for the length calculation (for percentage based lengths)
      * @return the length in millipoints
      */
     public int getLengthValue(PercentBaseContext context) {
         return this.length.getLength().getValue(context);
     }
 
+    /** @see java.lang.Object#toString() */
     public String toString() {
-        return "CondLength[" + (isDiscard() ? "discard, " : "") +
-        length.getObject().toString() + "]";
+        return "CondLength[" + length.getObject().toString() 
+                + ", conditionality:" + conditionality + "]";
     }    
 
-
     /**
      * @return this.condLength
      */