diff options
Diffstat (limited to 'src/org/apache/fop/area/MainReference.java')
-rw-r--r-- | src/org/apache/fop/area/MainReference.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/org/apache/fop/area/MainReference.java b/src/org/apache/fop/area/MainReference.java new file mode 100644 index 000000000..4c705637f --- /dev/null +++ b/src/org/apache/fop/area/MainReference.java @@ -0,0 +1,30 @@ +/* + * $Id$ + * Copyright (C) 2001 The Apache Software Foundation. All rights reserved. + * For details on use and redistribution please refer to the + * LICENSE file included with these sources. + */ + +package org.apache.fop.area; + +import java.util.ArrayList; +import java.util.List; + +// the area that contains the flow via the span areas +public class MainReference { + List spanAreas = new ArrayList(); + int columnGap; + int width; + + public List getSpans() { + return spanAreas; + } + + public int getColumnGap() { + return columnGap; + } + + public int getWidth() { + return width; + } +} |