* ============================================================================
* The Apache Software License, Version 1.1
* ============================================================================
- *
+ *
* Copyright (C) 1999-2003 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
* (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.apps;
// Java
import java.io.OutputStream;
import java.util.List;
+// Avalon
+import org.apache.avalon.framework.logger.AbstractLogEnabled;
+
// SAX
import org.xml.sax.SAXException;
import org.apache.fop.fo.pagination.PageSequence;
import org.apache.fop.layout.FontInfo;
import org.apache.fop.render.Renderer;
+import org.apache.fop.apps.StructureHandler;
+import org.apache.fop.fo.flow.Block;
+import org.apache.fop.fo.flow.Flow;
+import org.apache.fop.fo.pagination.PageSequenceMaster;
+import org.apache.fop.fo.pagination.SimplePageMaster;
+import org.apache.fop.apps.FOPException;
+import org.apache.fop.fo.flow.ExternalGraphic;
+import org.apache.fop.fo.flow.InstreamForeignObject;
+import org.apache.fop.fo.flow.Leader;
+import org.apache.fop.fo.flow.ListBlock;
+import org.apache.fop.fo.flow.ListItem;
+import org.apache.fop.fo.flow.Table;
+import org.apache.fop.fo.flow.TableBody;
+import org.apache.fop.fo.flow.TableCell;
+import org.apache.fop.fo.flow.TableRow;
/**
* Layout handler that receives the structure events.
if (MEM_PROFILE_WITH_GC) {
System.gc(); // This takes time but gives better results
}
-
+
initialMemory = runtime.totalMemory() - runtime.freeMemory();
startTime = System.currentTimeMillis();
}
* @param seqTitle the title of the page sequence
* @param lms the layout master set
*/
- public void startPageSequence(PageSequence pageSeq,
- org.apache.fop.fo.Title seqTitle,
+ public void startPageSequence(PageSequence pageSeq,
+ org.apache.fop.fo.Title seqTitle,
LayoutMasterSet lms) {
Title title = null;
if (seqTitle != null) {
if (collectStatistics) {
if (MEM_PROFILE_WITH_GC) {
// This takes time but gives better results
- System.gc();
+ System.gc();
}
long memoryNow = runtime.totalMemory() - runtime.freeMemory();
if (getLogger().isDebugEnabled()) {
pageSequence.format(areaTree);
}
+ public void startFlow(Flow fl) {
+ }
+
+ /**
+ * @see org.apache.fop.apps.StructureHandler#endFlow(Flow)
+ */
+ public void endFlow(Flow fl) {
+ }
+
+ /**
+ * @see org.apache.fop.apps.StructureHandler#startBlock(Block)
+ */
+ public void startBlock(Block bl) {
+ }
+
+ /**
+ * @see org.apache.fop.apps.StructureHandler#endBlock(Block)
+ */
+ public void endBlock(Block bl) {
+ }
+
+ public void startTable(Table tbl) {
+ }
+
+ public void endTable(Table tbl) {
+ }
+
+ public void startHeader(TableBody th) {
+ }
+
+ public void endHeader(TableBody th) {
+ }
+
+ public void startFooter(TableBody tf) {
+ }
+
+ public void endFooter(TableBody tf) {
+ }
+
+ public void startBody(TableBody tb) {
+ }
+
+ public void endBody(TableBody tb) {
+ }
+
+ public void startRow(TableRow tr) {
+ }
+
+ public void endRow(TableRow tr) {
+ }
+
+ public void startCell(TableCell tc) {
+ }
+
+ public void endCell(TableCell tc) {
+ }
+
+ // Lists
+ public void startList(ListBlock lb) {
+ }
+
+ public void endList(ListBlock lb) {
+ }
+
+ public void startListItem(ListItem li) {
+ }
+
+ public void endListItem(ListItem li) {
+ }
+
+ public void startListLabel() {
+ }
+
+ public void endListLabel() {
+ }
+
+ public void startListBody() {
+ }
+
+ public void endListBody() {
+ }
+
+ // Static Regions
+ public void startStatic() {
+ }
+
+ public void endStatic() {
+ }
+
+ public void startMarkup() {
+ }
+
+ public void endMarkup() {
+ }
+
+ public void startLink() {
+ }
+
+ public void endLink() {
+ }
+
+ public void image(ExternalGraphic eg) {
+ }
+
+ public void pageRef() {
+ }
+
+ public void foreignObject(InstreamForeignObject ifo) {
+ }
+
+ public void footnote() {
+ }
+
+ public void leader(Leader l) {
+ }
+
+ public void characters(char data[], int start, int length) {
+ }
+
/**
* Process an area tree.
* If a store pages model is used this can read and send all the
* ============================================================================
* The Apache Software License, Version 1.1
* ============================================================================
- *
+ *
* Copyright (C) 1999-2003 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
* (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.apps;
// Java
* Sub-classes can then implement various methods to handle
* the FO Tree when the SAX events occur.
*/
-public class StructureHandler extends AbstractLogEnabled {
+abstract public class StructureHandler extends AbstractLogEnabled {
/**
* The current set of id's in the FO tree.
* This is used so we know if the FO tree contains duplicates.
* This method is called to indicate the start of a new document run.
* @throws SAXException In case of a problem
*/
- public void startDocument() throws SAXException {
- }
+ abstract public void startDocument() throws SAXException;
/**
* This method is called to indicate the end of a document run.
* @throws SAXException In case of a problem
*/
- public void endDocument() throws SAXException {
- }
+ abstract public void endDocument() throws SAXException;
- public void startPageSequence(PageSequence pageSeq, Title seqTitle, LayoutMasterSet lms) {
+ abstract public void startPageSequence(PageSequence pageSeq, Title seqTitle, LayoutMasterSet lms);
- }
+ abstract public void endPageSequence(PageSequence pageSeq) throws FOPException;
- public void endPageSequence(PageSequence pageSeq) throws FOPException {
+ abstract public void startFlow(Flow fl);
- }
+ abstract public void endFlow(Flow fl);
- public void startFlow(Flow fl) {
+ abstract public void startBlock(Block bl);
- }
-
- public void endFlow(Flow fl) {
-
- }
-
- public void startBlock(Block bl) {
-
- }
-
- public void endBlock(Block bl) {
-
- }
+ abstract public void endBlock(Block bl);
// Tables
- public void startTable(Table tbl) {
-
- }
-
- public void endTable(Table tbl) {
-
- }
-
- public void startHeader(TableBody th) {
+ abstract public void startTable(Table tbl);
- }
+ abstract public void endTable(Table tbl);
- public void endHeader(TableBody th) {
+ abstract public void startHeader(TableBody th);
- }
+ abstract public void endHeader(TableBody th);
- public void startFooter(TableBody tf) {
+ abstract public void startFooter(TableBody tf);
- }
+ abstract public void endFooter(TableBody tf);
- public void endFooter(TableBody tf) {
+ abstract public void startBody(TableBody tb);
- }
+ abstract public void endBody(TableBody tb);
- public void startBody(TableBody tb) {
+ abstract public void startRow(TableRow tr);
- }
+ abstract public void endRow(TableRow tr);
- public void endBody(TableBody tb) {
+ abstract public void startCell(TableCell tc);
- }
-
- public void startRow(TableRow tr) {
-
- }
-
- public void endRow(TableRow tr) {
-
- }
-
- public void startCell(TableCell tc) {
-
- }
-
- public void endCell(TableCell tc) {
-
- }
+ abstract public void endCell(TableCell tc);
// Lists
- public void startList(ListBlock lb) {
+ abstract public void startList(ListBlock lb);
- }
+ abstract public void endList(ListBlock lb);
- public void endList(ListBlock lb) {
+ abstract public void startListItem(ListItem li);
- }
+ abstract public void endListItem(ListItem li);
- public void startListItem(ListItem li) {
+ abstract public void startListLabel();
- }
+ abstract public void endListLabel();
- public void endListItem(ListItem li) {
-
- }
-
- public void startListLabel() {
-
- }
-
- public void endListLabel() {
-
- }
-
- public void startListBody() {
-
- }
-
- public void endListBody() {
-
- }
+ abstract public void startListBody();
+ abstract public void endListBody();
// Static Regions
- public void startStatic() {
-
- }
+ abstract public void startStatic();
- public void endStatic() {
+ abstract public void endStatic();
- }
+ abstract public void startMarkup();
+ abstract public void endMarkup();
- public void startMarkup() {
- }
+ abstract public void startLink();
- public void endMarkup() {
+ abstract public void endLink();
- }
+ abstract public void image(ExternalGraphic eg);
- public void startLink() {
+ abstract public void pageRef();
- }
+ abstract public void foreignObject(InstreamForeignObject ifo);
- public void endLink() {
+ abstract public void footnote();
- }
+ abstract public void leader(Leader l);
-
- public void image(ExternalGraphic eg) {
-
- }
-
- public void pageRef() {
-
- }
-
- public void foreignObject(InstreamForeignObject ifo) {
-
- }
-
- public void footnote() {
-
- }
-
- public void leader(Leader l) {
-
- }
-
-
- public void characters(char data[], int start, int length) {
-
- }
+ abstract public void characters(char data[], int start, int length);
public void pageBreak() {
}
-
}
* ============================================================================
* The Apache Software License, Version 1.1
* ============================================================================
- *
+ *
* Copyright (C) 1999-2003 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
* (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.mif;
// Java
import org.apache.fop.fo.pagination.SimplePageMaster;
import org.apache.fop.layout.FontInfo;
import org.apache.fop.apps.FOPException;
+import org.apache.fop.fo.flow.ExternalGraphic;
+import org.apache.fop.fo.flow.InstreamForeignObject;
+import org.apache.fop.fo.flow.Leader;
+import org.apache.fop.fo.flow.ListBlock;
+import org.apache.fop.fo.flow.ListItem;
+import org.apache.fop.fo.flow.Table;
+import org.apache.fop.fo.flow.TableBody;
+import org.apache.fop.fo.flow.TableCell;
+import org.apache.fop.fo.flow.TableRow;
// TODO: do we really want every method throwing a SAXException
* This builds an MIF file and writes it to the output.
*/
public class MIFHandler extends StructureHandler {
-
+
/** the MIFFile instance */
protected MIFFile mifFile;
/** the OutputStream to write to */
para = null;
}
+ public void startTable(Table tbl) {
+ }
+
+ public void endTable(Table tbl) {
+ }
+
+ public void startHeader(TableBody th) {
+ }
+
+ public void endHeader(TableBody th) {
+ }
+
+ public void startFooter(TableBody tf) {
+ }
+
+ public void endFooter(TableBody tf) {
+ }
+
+ public void startBody(TableBody tb) {
+ }
+
+ public void endBody(TableBody tb) {
+ }
+
+ public void startRow(TableRow tr) {
+ }
+
+ public void endRow(TableRow tr) {
+ }
+
+ public void startCell(TableCell tc) {
+ }
+
+ public void endCell(TableCell tc) {
+ }
+
+ // Lists
+ public void startList(ListBlock lb) {
+ }
+
+ public void endList(ListBlock lb) {
+ }
+
+ public void startListItem(ListItem li) {
+ }
+
+ public void endListItem(ListItem li) {
+ }
+
+ public void startListLabel() {
+ }
+
+ public void endListLabel() {
+ }
+
+ public void startListBody() {
+ }
+
+ public void endListBody() {
+ }
+
+ // Static Regions
+ public void startStatic() {
+ }
+
+ public void endStatic() {
+ }
+
+ public void startMarkup() {
+ }
+
+ public void endMarkup() {
+ }
+
+ public void startLink() {
+ }
+
+ public void endLink() {
+ }
+
+ public void image(ExternalGraphic eg) {
+ }
+
+ public void pageRef() {
+ }
+
+ public void foreignObject(InstreamForeignObject ifo) {
+ }
+
+ public void footnote() {
+ }
+
+ public void leader(Leader l) {
+ }
+
/**
* @see org.apache.fop.apps.StructureHandler#characters(char[], int, int)
*/
* ============================================================================
* The Apache Software License, Version 1.1
* ============================================================================
- *
+ *
* Copyright (C) 1999-2003 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
* (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.rtf.renderer;
// Java
import org.apache.fop.fo.Title;
import org.apache.fop.fo.flow.Block;
import org.apache.fop.fo.flow.Flow;
+import org.apache.fop.fo.flow.ExternalGraphic;
+import org.apache.fop.fo.flow.InstreamForeignObject;
+import org.apache.fop.fo.flow.Leader;
+import org.apache.fop.fo.flow.ListBlock;
+import org.apache.fop.fo.flow.ListItem;
+import org.apache.fop.fo.flow.Table;
+import org.apache.fop.fo.flow.TableBody;
+import org.apache.fop.fo.flow.TableCell;
+import org.apache.fop.fo.flow.TableRow;
// JFOR
import org.jfor.jfor.rtflib.rtfdoc.RtfFile;
* @author bdelacretaz@apache.org
*/
public class RTFHandler extends StructureHandler {
-
+
private FontInfo fontInfo = new FontInfo();
private RtfFile rtfFile;
private final OutputStream os;
public void endBlock(Block bl) {
}
+ public void startTable(Table tbl) {
+ }
+
+ public void endTable(Table tbl) {
+ }
+
+ public void startHeader(TableBody th) {
+ }
+
+ public void endHeader(TableBody th) {
+ }
+
+ public void startFooter(TableBody tf) {
+ }
+
+ public void endFooter(TableBody tf) {
+ }
+
+ public void startBody(TableBody tb) {
+ }
+
+ public void endBody(TableBody tb) {
+ }
+
+ public void startRow(TableRow tr) {
+ }
+
+ public void endRow(TableRow tr) {
+ }
+
+ public void startCell(TableCell tc) {
+ }
+
+ public void endCell(TableCell tc) {
+ }
+
+ // Lists
+ public void startList(ListBlock lb) {
+ }
+
+ public void endList(ListBlock lb) {
+ }
+
+ public void startListItem(ListItem li) {
+ }
+
+ public void endListItem(ListItem li) {
+ }
+
+ public void startListLabel() {
+ }
+
+ public void endListLabel() {
+ }
+
+ public void startListBody() {
+ }
+
+ public void endListBody() {
+ }
+
+ // Static Regions
+ public void startStatic() {
+ }
+
+ public void endStatic() {
+ }
+
+ public void startMarkup() {
+ }
+
+ public void endMarkup() {
+ }
+
+ public void startLink() {
+ }
+
+ public void endLink() {
+ }
+
+ public void image(ExternalGraphic eg) {
+ }
+
+ public void pageRef() {
+ }
+
+ public void foreignObject(InstreamForeignObject ifo) {
+ }
+
+ public void footnote() {
+ }
+
+ public void leader(Leader l) {
+ }
+
/**
* @see org.apache.fop.apps.StructureHandler#characters(char[], int, int)
*/