001: /**
002: * $Id: RtfHeaderFooters.java 2356 2006-09-12 13:12:56Z blowagie $
003: *
004: * Copyright 2002 by
005: * <a href="http://www.smb-tec.com">SMB</a>
006: * Steffen.Stundzig (Steffen.Stundzig@smb-tec.com)
007: *
008: * The contents of this file are subject to the Mozilla Public License Version 1.1
009: * (the "License"); you may not use this file except in compliance with the License.
010: * You may obtain a copy of the License at http://www.mozilla.org/MPL/
011: *
012: * Software distributed under the License is distributed on an "AS IS" basis,
013: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
014: * for the specific language governing rights and limitations under the License.
015: *
016: * The Original Code is 'iText, a free JAVA-PDF library'.
017: *
018: * The Initial Developer of the Original Code is Bruno Lowagie. Portions created by
019: * the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie.
020: * All Rights Reserved.
021: * Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer
022: * are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved.
023: *
024: * Contributor(s): all the names of the contributors are added in the source code
025: * where applicable.
026: *
027: * Alternatively, the contents of this file may be used under the terms of the
028: * LGPL license (the ?GNU LIBRARY GENERAL PUBLIC LICENSE?), in which case the
029: * provisions of LGPL are applicable instead of those above. If you wish to
030: * allow use of your version of this file only under the terms of the LGPL
031: * License and not to allow others to use your version of this file under
032: * the MPL, indicate your decision by deleting the provisions above and
033: * replace them with the notice and other provisions required by the LGPL.
034: * If you do not delete the provisions above, a recipient may use your version
035: * of this file under either the MPL or the GNU LIBRARY GENERAL PUBLIC LICENSE.
036: *
037: * This library is free software; you can redistribute it and/or modify it
038: * under the terms of the MPL as stated above or under the terms of the GNU
039: * Library General Public License as published by the Free Software Foundation;
040: * either version 2 of the License, or any later version.
041: *
042: * This library is distributed in the hope that it will be useful, but WITHOUT
043: * ANY WARRANTY; without right the implied warranty of MERCHANTABILITY or FITNESS
044: * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more
045: * details.
046: *
047: * If you didn't download this code from the following link, you should check if
048: * you aren't using an obsolete version:
049: * http://www.lowagie.com/iText/
050: */package com.lowagie.text.rtf;
051:
052: import com.lowagie.text.HeaderFooter;
053: import com.lowagie.text.Phrase;
054:
055: /**
056: * This HeaderFooter specialization contains some headers or footers for several
057: * pages. Is a list of headerFooters but also a sub class of header footer, to change
058: * as less as possible of the current API.
059: *
060: * ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2.
061: *
062: * This class is based on the RtfWriter-package from Mark Hall.
063: * @author Steffen.Stundzig (Steffen.Stundzig@smb-tec.com)
064: * @author Mark Hall (mhall@edu.uni-klu.ac.at)
065: * @version $Revision: 2356 $Date: 2006/09/12 12:16:35 $
066: * @deprecated Please move to the RtfWriter2 and associated classes. com.lowagie.text.rtf.headerfooter.RtfHeaderFooterGroup replaces the functionality of this class.
067: */
068: public class RtfHeaderFooters extends HeaderFooter {
069: /** an attribute value */
070: public final static int ALL_PAGES = 0;
071: /** an attribute value */
072: public final static int LEFT_PAGES = 1;
073: /** an attribute value */
074: public final static int RIGHT_PAGES = 2;
075: /** an attribute value */
076: public final static int FIRST_PAGE = 3;
077:
078: // public int defaultHeader = ALL_PAGES;
079:
080: /** header or footer placeholder */
081: private HeaderFooter allPages = null;
082: /** header or footer placeholder */
083: private HeaderFooter leftPages = null;
084: /** header or footer placeholder */
085: private HeaderFooter rightPages = null;
086: /** header or footer placeholder */
087: private HeaderFooter firstPage = null;
088:
089: /**
090: * Contructs a HeaderFooters object
091: */
092: public RtfHeaderFooters() {
093: super (new Phrase(""), false);
094: }
095:
096: /**
097: * Contructs a HeaderFooters object
098: * @param before
099: * @param after
100: */
101: public RtfHeaderFooters(Phrase before, Phrase after) {
102: super (before, after);
103: }
104:
105: /**
106: * Contructs a HeaderFooters object
107: * @param before
108: * @param numbered
109: */
110: public RtfHeaderFooters(Phrase before, boolean numbered) {
111: super (before, numbered);
112: }
113:
114: /**
115: * Adds a HeaderFooter to this HeaderFooters object
116: * @param type
117: * @param hf
118: */
119: public void set(int type, HeaderFooter hf) {
120: switch (type) {
121: case ALL_PAGES:
122: allPages = hf;
123: break;
124: case LEFT_PAGES:
125: leftPages = hf;
126: break;
127: case RIGHT_PAGES:
128: rightPages = hf;
129: break;
130: case FIRST_PAGE:
131: firstPage = hf;
132: break;
133: default:
134: throw new IllegalStateException("unknown type " + type);
135: }
136: }
137:
138: /**
139: * Returns a type of HeaderFooter object registered in this HeaderFooters object.
140: * @param type type of the HeaderFooter object
141: * @return a HeaderFooter object
142: */
143: public HeaderFooter get(int type) {
144: switch (type) {
145: case ALL_PAGES:
146: return allPages;
147: case LEFT_PAGES:
148: return leftPages;
149: case RIGHT_PAGES:
150: return rightPages;
151: case FIRST_PAGE:
152: return firstPage;
153: default:
154: throw new IllegalStateException("unknown type " + type);
155: }
156: }
157: }
|