return this.length.getLength().getValue();
}
+ public String toString() {
+ return "CondLength[" + (isDiscard() ? "discard, " : "") +
+ length.getObject().toString() + "]";
+ }
}
* @return String representation
*/
public String toString() {
- return "Keep";
+ return "Keep[" +
+ "withinLine:" + getWithinLine().getObject() +
+ ", withinColumn:" + getWithinColumn().getObject() +
+ ", withinPage:" + getWithinPage().getObject() + "]";
}
}
return this.bpd;
}
+ public String toString() {
+ return "LengthPair[" +
+ "ipd:" + getIPD().getObject() +
+ ", bpd:" + getBPD().getObject() + "]";
+ }
+
}
return this.optimum;
}
+ public String toString() {
+ return "LengthRange[" +
+ "min:" + getMinimum().getObject() +
+ ", max:" + getMaximum().getObject() +
+ ", opt:" + getOptimum().getObject() + "]";
+ }
+
}
return this.conditionality;
}
+ public String toString() {
+ return "Space[" +
+ "min:" + getMinimum().getObject() +
+ ", max:" + getMaximum().getObject() +
+ ", opt:" + getOptimum().getObject() +
+ ", precedence:" + precedence.getObject() +
+ ", conditionality:" + conditionality.getObject() + "]";
+ }
+
}