bckfnn 2004/09/30 12:55:35
Modified: src/java/org/apache/fop/fo FOEventHandler.java
Log:
Added support for Character and BlockContainer.
Revision Changes Path
1.3 +24 -1 xml-fop/src/java/org/apache/fop/fo/FOEventHandler.java
Index: FOEventHandler.java
===================================================================
RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/fo/FOEventHandler.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FOEventHandler.java 7 Sep 2004 20:47:09 -0000 1.2
+++ FOEventHandler.java 30 Sep 2004 19:55:35 -0000 1.3
@@ -27,6 +27,8 @@
import org.apache.fop.apps.FOUserAgent;
import org.apache.fop.fo.flow.BasicLink;
import org.apache.fop.fo.flow.Block;
+import org.apache.fop.fo.flow.BlockContainer;
+import org.apache.fop.fo.flow.Character;
import org.apache.fop.fo.flow.ExternalGraphic;
import org.apache.fop.fo.flow.Footnote;
import org.apache.fop.fo.flow.FootnoteBody;
@@ -194,6 +196,20 @@
}
/**
+ *
+ * @param bl BlockContainer that is starting.
+ */
+ public void startBlockContainer(BlockContainer blc) {
+ }
+
+ /**
+ *
+ * @param blc BlockContainer that is ending.
+ */
+ public void endBlockContainer(BlockContainer blc) {
+ }
+
+ /**
*
* @param inl Inline that is starting.
*/
@@ -452,6 +468,13 @@
* @param l Leader to process.
*/
public void leader(Leader l) {
+ }
+
+ /**
+ * Process a Character.
+ * @param c Character to process.
+ */
+ public void character(Character c) {
}
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]