001: /**
002: * $Id: GenericRtfField.java 2655 2007-03-15 19:26:36Z xlv $
003: *
004: * Copyright 2002 by
005: * <a href="http://www.smb-tec.com">SMB</a>
006: * Dirk Weigenand (Dirk.Weigenand@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: *
038: * This library is free software; you can redistribute it and/or modify it
039: * under the terms of the MPL as stated above or under the terms of the GNU
040: * Library General Public License as published by the Free Software Foundation;
041: * either version 2 of the License, or any later version.
042: *
043: * This library is distributed in the hope that it will be useful, but WITHOUT
044: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
045: * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more
046: * details.
047: *
048: * If you didn't download this code from the following link, you should check if
049: * you aren't using an obsolete version:
050: * http://www.lowagie.com/iText/
051: */package com.lowagie.text.rtf;
052:
053: import java.io.IOException;
054: import java.io.OutputStream;
055:
056: import com.lowagie.text.Font;
057:
058: /**
059: * This class implements a generic RtfField.
060: *
061: * This class is based on the RtfWriter-package from Mark Hall.
062: *
063: * ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2.
064: *
065: * @author Dirk Weigenand (Dirk.Weigenand@smb-tec.com)
066: * @version $Id: GenericRtfField.java 2655 2007-03-15 19:26:36Z xlv $
067: * @since Mon Aug 19 14:50:39 2002
068: * @deprecated Please move to the RtfWriter2 and associated classes.
069: */
070: public class GenericRtfField extends AbstractRtfField {
071: /**
072: * Field Initialization Stuff.
073: */
074: protected String fieldInst;
075:
076: /**
077: * Field Result Stuff.
078: */
079: protected String fieldResult;
080:
081: /**
082: * public constructor, set the data that is to be written into the
083: * Field Initialization Stuff and Field Result parts of the
084: * RtfField.
085: *
086: * @param fieldInst data to be written into the Field
087: * Initialization Stuff part of the RtfField.
088: * @param fieldResult data to be written into the Field Result
089: * part of the RtfField.
090: */
091: public GenericRtfField(final String fieldInst,
092: final String fieldResult) {
093: super ("x", new Font());
094: this .fieldInst = fieldInst;
095: this .fieldResult = fieldResult;
096: }
097:
098: /**
099: * public constructor, set the data that is to be written into the
100: * Field Initialization Stuff and Field Result parts of the
101: * RtfField.
102: *
103: * @param fieldInst data to be written into the Field
104: * Initialization Stuff part of the RtfField.
105: * @param fieldResult data to be written into the Field Result
106: * part of the RtfField.
107: * @param font
108: */
109: public GenericRtfField(final String fieldInst,
110: final String fieldResult, Font font) {
111: super ("x", font);
112: this .fieldInst = fieldInst;
113: this .fieldResult = fieldResult;
114: }
115:
116: /**
117: * method for writing custom stuff to the Field Initialization
118: * Stuff part of an RtfField.
119: * @param out
120: * @throws IOException
121: */
122: public void writeRtfFieldInitializationStuff(OutputStream out)
123: throws IOException {
124: out.write(fieldInst.trim().getBytes());
125: out.write(RtfWriter.delimiter);
126: }
127:
128: /**
129: * method for writing custom stuff to the Field Result part of an
130: * RtfField.
131: * @param out
132: * @throws IOException
133: */
134: public void writeRtfFieldResultStuff(OutputStream out)
135: throws IOException {
136: if (null != fieldResult) {
137: out.write(fieldResult.trim().getBytes());
138: }
139: }
140: }
|