aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/util
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2008-01-07 10:52:09 +0000
committerJeremias Maerki <jeremias@apache.org>2008-01-07 10:52:09 +0000
commit6415c9acd2fcfeb4961d53b8b5b967ad1010dceb (patch)
treeb75183e52d13946c1d9e58bc9453ccd03434dfd4 /src/java/org/apache/fop/util
parent47571de516042aee166a579e6d984697ac60146c (diff)
downloadxmlgraphics-fop-6415c9acd2fcfeb4961d53b8b5b967ad1010dceb.tar.gz
xmlgraphics-fop-6415c9acd2fcfeb4961d53b8b5b967ad1010dceb.zip
Reenabled documentation for fox:destination.
Enabled intermediate format functionality for fox:destination. Added a test case to check fox:destination. Deprecated FOP's XMLizable in favor of the XML Graphics Commons variant (and extend that variant). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@609567 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/util')
-rw-r--r--src/java/org/apache/fop/util/XMLizable.java13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/java/org/apache/fop/util/XMLizable.java b/src/java/org/apache/fop/util/XMLizable.java
index c1213638b..a16131989 100644
--- a/src/java/org/apache/fop/util/XMLizable.java
+++ b/src/java/org/apache/fop/util/XMLizable.java
@@ -25,20 +25,11 @@ package org.apache.fop.util;
* src/java/org/apache/excalibur/xml/sax/XMLizable.java
*/
-import org.xml.sax.ContentHandler;
-import org.xml.sax.SAXException;
-
/**
* This interface can be implemented by classes willing to provide an XML representation
* of their current state as SAX events.
+ * @deprecated Use the interface in Apache XML Graphics Commons instead.
*/
-public interface XMLizable {
-
- /**
- * Generates SAX events representing the object's state.
- * @param handler ContentHandler instance to send the SAX events to
- * @throws SAXException if there's a problem generating the SAX events
- */
- void toSAX(ContentHandler handler) throws SAXException;
+public interface XMLizable extends org.apache.xmlgraphics.util.XMLizable {
}