aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/traits/SpaceVal.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/traits/SpaceVal.java')
-rw-r--r--src/org/apache/fop/traits/SpaceVal.java40
1 files changed, 19 insertions, 21 deletions
diff --git a/src/org/apache/fop/traits/SpaceVal.java b/src/org/apache/fop/traits/SpaceVal.java
index 3807a2aea..763ac00eb 100644
--- a/src/org/apache/fop/traits/SpaceVal.java
+++ b/src/org/apache/fop/traits/SpaceVal.java
@@ -23,29 +23,27 @@ public class SpaceVal {
public final int iPrecedence; // Numeric only, if forcing, set to 0
public SpaceVal(Space spaceprop) {
- space = new MinOptMax(
- spaceprop.getMinimum().getLength().mvalue(),
- spaceprop.getOptimum().getLength().mvalue(),
- spaceprop.getMaximum().getLength().mvalue());
- bConditional = (spaceprop.getConditionality().getEnum() ==
- Constants.DISCARD);
- Property precProp = spaceprop.getPrecedence();
- if (precProp.getNumber() != null) {
- iPrecedence = precProp.getNumber().intValue();
- bForcing = false;
- }
- else {
- bForcing = (precProp.getEnum() == Constants.FORCE);
- iPrecedence=0;
- }
+ space = new MinOptMax( spaceprop.getMinimum().getLength().mvalue(),
+ spaceprop.getOptimum().getLength().mvalue(),
+ spaceprop.getMaximum().getLength().mvalue());
+ bConditional = (spaceprop.getConditionality().getEnum() ==
+ Constants.DISCARD);
+ Property precProp = spaceprop.getPrecedence();
+ if (precProp.getNumber() != null) {
+ iPrecedence = precProp.getNumber().intValue();
+ bForcing = false;
+ } else {
+ bForcing = (precProp.getEnum() == Constants.FORCE);
+ iPrecedence = 0;
+ }
}
- public SpaceVal(MinOptMax space, boolean bConditional, boolean bForcing,
- int iPrecedence) {
- this.space = space;
- this.bConditional = bConditional;
- this.bForcing = bForcing;
- this.iPrecedence = iPrecedence;
+ public SpaceVal(MinOptMax space, boolean bConditional,
+ boolean bForcing, int iPrecedence) {
+ this.space = space;
+ this.bConditional = bConditional;
+ this.bForcing = bForcing;
+ this.iPrecedence = iPrecedence;
}
}