From 4db7ddbd6393af44726e6e2392233e68971915c7 Mon Sep 17 00:00:00 2001 From: arved Date: Tue, 11 Jul 2000 02:25:08 +0000 Subject: [PATCH] Not required in March 27 2000 spec git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193472 13f79535-47bb-0310-9956-ffa450edef68 --- .../fop/fo/pagination/SequenceSpecifier.java | 63 ---------- .../SequenceSpecifierAlternating.java | 115 ------------------ .../SequenceSpecifierRepeating.java | 111 ----------------- .../pagination/SequenceSpecifierSingle.java | 109 ----------------- .../layout/AlternatingPageMasterFactory.java | 91 -------------- .../apache/fop/layout/PageMasterFactory.java | 70 ----------- .../layout/RepeatingPageMasterFactory.java | 87 ------------- .../fop/layout/SinglePageMasterFactory.java | 84 ------------- 8 files changed, 730 deletions(-) delete mode 100644 src/org/apache/fop/fo/pagination/SequenceSpecifier.java delete mode 100644 src/org/apache/fop/fo/pagination/SequenceSpecifierAlternating.java delete mode 100644 src/org/apache/fop/fo/pagination/SequenceSpecifierRepeating.java delete mode 100644 src/org/apache/fop/fo/pagination/SequenceSpecifierSingle.java delete mode 100644 src/org/apache/fop/layout/AlternatingPageMasterFactory.java delete mode 100644 src/org/apache/fop/layout/PageMasterFactory.java delete mode 100644 src/org/apache/fop/layout/RepeatingPageMasterFactory.java delete mode 100644 src/org/apache/fop/layout/SinglePageMasterFactory.java diff --git a/src/org/apache/fop/fo/pagination/SequenceSpecifier.java b/src/org/apache/fop/fo/pagination/SequenceSpecifier.java deleted file mode 100644 index b2f2bec0a..000000000 --- a/src/org/apache/fop/fo/pagination/SequenceSpecifier.java +++ /dev/null @@ -1,63 +0,0 @@ -/*-- $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 . For more information on the Apache - Software Foundation, please see . - - */ -package org.apache.fop.fo.pagination; - -import org.apache.fop.fo.*; -import org.apache.fop.layout.PageMasterFactory; - -abstract public class SequenceSpecifier extends FObj { - - protected SequenceSpecifier(FObj parent, PropertyList propertyList) { - super(parent, propertyList); - } - - public abstract PageMasterFactory getPageMasterFactory(); -} diff --git a/src/org/apache/fop/fo/pagination/SequenceSpecifierAlternating.java b/src/org/apache/fop/fo/pagination/SequenceSpecifierAlternating.java deleted file mode 100644 index 39db4482c..000000000 --- a/src/org/apache/fop/fo/pagination/SequenceSpecifierAlternating.java +++ /dev/null @@ -1,115 +0,0 @@ -/*-- $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 . For more information on the Apache - Software Foundation, please see . - - */ -package org.apache.fop.fo.pagination; - -// FOP -import org.apache.fop.fo.*; -import org.apache.fop.fo.properties.*; -import org.apache.fop.layout.PageMasterFactory; -import org.apache.fop.layout.AlternatingPageMasterFactory; -import org.apache.fop.layout.PageMaster; -import org.apache.fop.apps.FOPException; - -public class SequenceSpecifierAlternating extends SequenceSpecifier { - - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, PropertyList propertyList) - throws FOPException { - return new SequenceSpecifierAlternating(parent, propertyList); - } - } - - public static FObj.Maker maker() { - return new SequenceSpecifierAlternating.Maker(); - } - - private SequenceSpecification sequenceSpecification; - private LayoutMasterSet layoutMasterSet; - private AlternatingPageMasterFactory pageMasterFactory; - - protected SequenceSpecifierAlternating(FObj parent, - PropertyList propertyList) - throws FOPException { - super(parent, propertyList); - PageMaster pf, pe, po; - - this.name = "fo:sequence-specifer-alternating"; - - if (parent.getName().equals("fo:sequence-specification")) { - this.sequenceSpecification = (SequenceSpecification) parent; - this.layoutMasterSet = this.sequenceSpecification.getLayoutMasterSet(); - } else { - throw new FOPException("fo:sequence-specifier-alternating must be " - + " child of fo:sequence-specification, not " - + parent.getName()); - } - - String pageMasterFirst = this.properties.get("page-master-first").getString(); - String pageMasterOdd = this.properties.get("page-master-odd").getString(); - String pageMasterEven = this.properties.get("page-master-even").getString(); - - try { - pf = this.layoutMasterSet.getLayoutMaster(pageMasterFirst).getPageMaster(); - pe = this.layoutMasterSet.getLayoutMaster(pageMasterEven).getPageMaster(); - po = this.layoutMasterSet.getLayoutMaster(pageMasterOdd).getPageMaster(); - this.pageMasterFactory = new AlternatingPageMasterFactory(pf,pe,po); - } catch (java.lang.NullPointerException e) { - throw new FOPException("at least one of the page-master names in" - + " sequence-specifier-alternating is not in" - + " layout-master-set"); - } - this.sequenceSpecification.addSequenceSpecifier(this); - } - - public PageMasterFactory getPageMasterFactory() { - return this.pageMasterFactory; - } -} diff --git a/src/org/apache/fop/fo/pagination/SequenceSpecifierRepeating.java b/src/org/apache/fop/fo/pagination/SequenceSpecifierRepeating.java deleted file mode 100644 index 683c05670..000000000 --- a/src/org/apache/fop/fo/pagination/SequenceSpecifierRepeating.java +++ /dev/null @@ -1,111 +0,0 @@ -/*-- $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 . For more information on the Apache - Software Foundation, please see . - - */ -package org.apache.fop.fo.pagination; - -// FOP -import org.apache.fop.fo.*; -import org.apache.fop.fo.properties.*; -import org.apache.fop.layout.PageMasterFactory; -import org.apache.fop.layout.RepeatingPageMasterFactory; -import org.apache.fop.layout.PageMaster; -import org.apache.fop.apps.FOPException; - -public class SequenceSpecifierRepeating extends SequenceSpecifier { - - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, PropertyList propertyList) - throws FOPException { - return new SequenceSpecifierRepeating(parent, propertyList); - } - } - - public static FObj.Maker maker() { - return new SequenceSpecifierRepeating.Maker(); - } - - private SequenceSpecification sequenceSpecification; - private LayoutMasterSet layoutMasterSet; - private RepeatingPageMasterFactory pageMasterFactory; - - protected SequenceSpecifierRepeating(FObj parent, PropertyList propertyList) - throws FOPException { - super(parent, propertyList); - PageMaster pf, pr; - - this.name = "fo:sequence-specifer-repeating"; - - if (parent.getName().equals("fo:sequence-specification")) { - this.sequenceSpecification = (SequenceSpecification) parent; - this.layoutMasterSet = this.sequenceSpecification.getLayoutMasterSet(); - } else { - throw new FOPException("sequence-specifier-repeating must be " - + "child of fo:sequence-specification, " - + "not " + parent.getName()); - } - - String pageMasterFirst = this.properties.get("page-master-first").getString(); - String pageMasterRepeating = this.properties.get("page-master-repeating").getString(); - try { - pf = this.layoutMasterSet.getLayoutMaster(pageMasterFirst).getPageMaster(); - pr = this.layoutMasterSet.getLayoutMaster(pageMasterRepeating).getPageMaster(); - this.pageMasterFactory = new RepeatingPageMasterFactory(pf, pr); - } catch (java.lang.NullPointerException e) { - throw new FOPException("at least one of the page-master names in " - + "sequence-specifier-repeating is not in " - + "layout-master-set"); - } - this.sequenceSpecification.addSequenceSpecifier(this); - } - - public PageMasterFactory getPageMasterFactory() { - return this.pageMasterFactory; - } -} diff --git a/src/org/apache/fop/fo/pagination/SequenceSpecifierSingle.java b/src/org/apache/fop/fo/pagination/SequenceSpecifierSingle.java deleted file mode 100644 index d6f0129c9..000000000 --- a/src/org/apache/fop/fo/pagination/SequenceSpecifierSingle.java +++ /dev/null @@ -1,109 +0,0 @@ -/*-- $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 . For more information on the Apache - Software Foundation, please see . - - */ -package org.apache.fop.fo.pagination; - -// FOP -import org.apache.fop.fo.*; -import org.apache.fop.fo.properties.*; -import org.apache.fop.layout.PageMasterFactory; -import org.apache.fop.layout.SinglePageMasterFactory; -import org.apache.fop.layout.PageMaster; -import org.apache.fop.apps.FOPException; - -public class SequenceSpecifierSingle extends SequenceSpecifier { - - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, PropertyList propertyList) - throws FOPException { - return new SequenceSpecifierSingle(parent, propertyList); - } - } - - public static FObj.Maker maker() { - return new SequenceSpecifierSingle.Maker(); - } - - private SequenceSpecification sequenceSpecification; - private LayoutMasterSet layoutMasterSet; - private SinglePageMasterFactory pageMasterFactory; - - protected SequenceSpecifierSingle(FObj parent, PropertyList propertyList) - throws FOPException { - super(parent, propertyList); - this.name = "fo:sequence-specifer-single"; - - if (parent.getName().equals("fo:sequence-specification")) { - this.sequenceSpecification = (SequenceSpecification) parent; - this.layoutMasterSet = this.sequenceSpecification.getLayoutMasterSet(); - } else { - throw new FOPException("sequence-specifier-single must be " - + "child of fo:sequence-specification, " - + "not " + parent.getName()); - } - - String pageMasterName = this.properties.get("page-master-name").getString(); - try { - this.pageMasterFactory = new SinglePageMasterFactory(this.layoutMasterSet.getLayoutMaster(pageMasterName).getPageMaster()); - } catch (java.lang.NullPointerException e) { - throw new FOPException("page-master-name " + - pageMasterName + " must be in layout-master-set"); - } - this.sequenceSpecification.addSequenceSpecifier(this); - } - - public PageMasterFactory getPageMasterFactory() { - return this.pageMasterFactory; - } - - public String getPageMasterName() { - return this.properties.get("page-master-name").getString(); - } -} diff --git a/src/org/apache/fop/layout/AlternatingPageMasterFactory.java b/src/org/apache/fop/layout/AlternatingPageMasterFactory.java deleted file mode 100644 index d08bbdf20..000000000 --- a/src/org/apache/fop/layout/AlternatingPageMasterFactory.java +++ /dev/null @@ -1,91 +0,0 @@ -/*-- $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 . For more information on the Apache - Software Foundation, please see . - - */ -package org.apache.fop.layout; - -public class AlternatingPageMasterFactory extends PageMasterFactory { - - private PageMaster pageMasterFirst; - private PageMaster pageMasterEven; - private PageMaster pageMasterOdd; - - private static final int FIRST = 0; - private static final int EVEN = 1; - private static final int ODD = 2; - - private int state; - - public AlternatingPageMasterFactory(PageMaster first, PageMaster even, PageMaster odd) { - this.pageMasterFirst = first; - this.pageMasterEven = even; - this.pageMasterOdd = odd; - this.state = FIRST; - } - - public int getHeight() { - return this.pageMasterFirst.getHeight(); - } - - public PageMaster getNextPageMaster() { - PageMaster pm; - - switch (this.state) { - case EVEN: pm = this.pageMasterEven; this.state = ODD; break; - case ODD: pm = this.pageMasterOdd; this.state = EVEN; break; - default: pm = this.pageMasterFirst; this.state = EVEN; - } - - return pm; - } - - public int getWidth() { - return this.pageMasterFirst.getWidth(); - } -} diff --git a/src/org/apache/fop/layout/PageMasterFactory.java b/src/org/apache/fop/layout/PageMasterFactory.java deleted file mode 100644 index 1339d9645..000000000 --- a/src/org/apache/fop/layout/PageMasterFactory.java +++ /dev/null @@ -1,70 +0,0 @@ -/*-- $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 . For more information on the Apache - Software Foundation, please see . - - */ -package org.apache.fop.layout; - -abstract public class PageMasterFactory { - - private PageMasterFactory next; - - abstract public int getHeight(); - - abstract public int getWidth(); - - public PageMasterFactory getNext() { - return this.next; - } - - abstract public PageMaster getNextPageMaster(); - - public void setNext(PageMasterFactory pmf) { - this.next = pmf; - } -} diff --git a/src/org/apache/fop/layout/RepeatingPageMasterFactory.java b/src/org/apache/fop/layout/RepeatingPageMasterFactory.java deleted file mode 100644 index a0f84ccf6..000000000 --- a/src/org/apache/fop/layout/RepeatingPageMasterFactory.java +++ /dev/null @@ -1,87 +0,0 @@ -/*-- $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 . For more information on the Apache - Software Foundation, please see . - - */ -package org.apache.fop.layout; - -public class RepeatingPageMasterFactory extends PageMasterFactory { - - private PageMaster pageMasterFirst; - private PageMaster pageMasterRepeating; - - private static final int FIRST = 0; - private static final int REST = 1; - - private int state; - - public RepeatingPageMasterFactory(PageMaster first, PageMaster repeating) { - this.pageMasterFirst = first; - this.pageMasterRepeating = repeating; - this.state = FIRST; - } - - public int getHeight() { - return this.pageMasterFirst.getHeight(); - } - - public PageMaster getNextPageMaster() { - PageMaster pm; - - switch (this.state) { - case REST: pm = this.pageMasterRepeating; this.state = REST; break; - default: pm = this.pageMasterFirst; this.state = REST; - } - - return pm; - } - - public int getWidth() { - return this.pageMasterFirst.getWidth(); - } -} diff --git a/src/org/apache/fop/layout/SinglePageMasterFactory.java b/src/org/apache/fop/layout/SinglePageMasterFactory.java deleted file mode 100644 index 3b5e19bf3..000000000 --- a/src/org/apache/fop/layout/SinglePageMasterFactory.java +++ /dev/null @@ -1,84 +0,0 @@ -/*-- $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 . For more information on the Apache - Software Foundation, please see . - - */ -package org.apache.fop.layout; - -public class SinglePageMasterFactory extends PageMasterFactory { - - private PageMaster pageMaster; - - private static final int FIRST = 0; - private static final int DONE = 1; - - private int state; - - public SinglePageMasterFactory(PageMaster pageMaster) { - this.pageMaster = pageMaster; - this.state = FIRST; - } - - public int getHeight() { - return this.pageMaster.getHeight(); - } - - public PageMaster getNextPageMaster() { - PageMaster pm; - - switch (this.state) { - case FIRST: pm = this.pageMaster; this.state = DONE; break; - default: pm = null; - } - - return pm; - } - public int getWidth() { - return this.pageMaster.getWidth(); - } -} -- 2.39.5