Browse Source

Style fixes.

Assimilate toString() with SpaceProperty's toString().

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@280857 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_90-alpha1
Jeremias Maerki 19 years ago
parent
commit
accf2d5828
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      src/java/org/apache/fop/fo/properties/CondLengthProperty.java

+ 6
- 6
src/java/org/apache/fop/fo/properties/CondLengthProperty.java View 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
*/

Loading…
Cancel
Save