--- /dev/null
+/*-- $Id$ --
+
+ ============================================================================
+ The Apache Software License, Version 1.1
+ ============================================================================
+
+ Copyright (C) 1999 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
+ APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
+ DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (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.datatypes;
+
+/**
+ * Keep Value
+ * Stores the different types of keeps in a single convenient format.
+ */
+public class KeepValue {
+ public static final String KEEP_WITH_ALWAYS = "KEEP_WITH_ALWAYS";
+ public static final String KEEP_WITH_AUTO = "KEEP_WITH_AUTO";
+ public static final String KEEP_WITH_VALUE = "KEEP_WITH_VALUE";
+ private String type = KEEP_WITH_AUTO;
+ private int value = 0;
+
+ public KeepValue(String type, int val) {
+ this.type = type;
+ this.value = val;
+ }
+
+ public int getValue()
+ {
+ return value;
+ }
+
+ public String getType()
+ {
+ return type;
+ }
+}
int paddingBottom;
int paddingLeft;
int paddingRight;
- int keepWithNext;
- int keepWithPrevious;
+ KeepValue keepWithNext;
+ KeepValue keepWithPrevious;
int widthOfCellsSoFar = 0;
int largestCellHeight = 0;
this.columns = columns;
}
- public int getKeepWithPrevious() {
+ public KeepValue getKeepWithPrevious() {
return keepWithPrevious;
}
setup = true;
}
- private int getKeepValue(String sPropName) {
+ private KeepValue getKeepValue(String sPropName) {
Property p= this.properties.get(sPropName);
Number n = p.getNumber();
if (n != null)
- return n.intValue();
- else return p.getEnum();
+ return new KeepValue(KeepValue.KEEP_WITH_VALUE, n.intValue());
+ switch(p.getEnum()) {
+ case 2:
+ return new KeepValue(KeepValue.KEEP_WITH_ALWAYS, 0);
+ //break;
+ case 1:
+ default:
+ return new KeepValue(KeepValue.KEEP_WITH_AUTO, 0);
+ //break;
+ }
}
public Status layout(Area area) throws FOPException {
if (someCellDidNotLayoutCompletely) {
return new Status(Status.AREA_FULL_SOME);
} else {
- if (keepWithNext != 0) {
+ if (keepWithNext.getType() != KeepValue.KEEP_WITH_AUTO) {
return new Status(Status.KEEP_WITH_NEXT);
}
return new Status(Status.OK);