]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Forgot to add Streamable.
authorAdrian Cumiskey <acumiskey@apache.org>
Wed, 27 Aug 2008 12:46:38 +0000 (12:46 +0000)
committerAdrian Cumiskey <acumiskey@apache.org>
Wed, 27 Aug 2008 12:46:38 +0000 (12:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@689463 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/afp/AFPStreamer.java
src/java/org/apache/fop/render/afp/Streamable.java [new file with mode: 0644]
src/java/org/apache/fop/render/afp/modca/AbstractAFPObject.java
src/java/org/apache/fop/render/afp/modca/Document.java
src/java/org/apache/fop/render/afp/modca/ResourceGroup.java
src/java/org/apache/fop/render/afp/modca/triplets/Triplet.java

index ac8149dcfbdc6ee91e8fc463cf28561bbbed9361..84a7917aa62eb80adeb1e86e8c6f442fe87b771f 100644 (file)
@@ -35,7 +35,7 @@ import org.apache.fop.render.afp.modca.DataStream;
 import org.apache.fop.render.afp.modca.Factory;
 import org.apache.fop.render.afp.modca.ResourceGroup;
 import org.apache.fop.render.afp.modca.StreamedResourceGroup;
-import org.apache.fop.util.store.Streamable;
+import org.apache.fop.render.afp.Streamable;
 
 /**
  * Manages the streaming of the AFP output
diff --git a/src/java/org/apache/fop/render/afp/Streamable.java b/src/java/org/apache/fop/render/afp/Streamable.java
new file mode 100644 (file)
index 0000000..cb2cd1b
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* $Id$ */
+
+package org.apache.fop.render.afp;
+
+import java.io.IOException;
+import java.io.OutputStream;
+
+/**
+ * Implementing object is able to write to an OutputStream
+ */
+public interface Streamable {
+
+    /**
+     * DataStream objects must implement the writeToStream()
+     * method to write its data to the given OutputStream
+     *
+     * @param os the outputsteam stream
+     * @throws java.io.IOException an I/O exception of some sort has occurred.
+     */
+    void writeToStream(OutputStream os) throws IOException;
+}
index 45e6c68e4c6c72667a1741093e764f7f5486c95b..d46f6605e359b6a664babeb19a3690255f66b6cd 100644 (file)
@@ -26,7 +26,7 @@ import java.util.Iterator;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.fop.util.store.Streamable;
+import org.apache.fop.render.afp.Streamable;
 
 /**
  * This is the base class for all data stream objects. Page objects are
index 04fb6c8c873689494eb0d9cb42ffe178cb3a325f..3c569d24daa30dfb2259889b2c71adaa159ae8f3 100644 (file)
@@ -23,7 +23,7 @@ import java.io.IOException;
 import java.io.OutputStream;
 import java.util.Iterator;
 
-import org.apache.fop.util.store.Streamable;
+import org.apache.fop.render.afp.Streamable;
 
 /**
  * The document is the highest level of the MO:DCA data-stream document
index 9e89144f44f7754d80dabb0e2c486264866aa8ae..c412f85f7f1040798aa77ae49d9c724dfdb3a510 100644 (file)
@@ -24,7 +24,7 @@ import java.io.OutputStream;
 import java.util.Iterator;
 import java.util.Set;
 
-import org.apache.fop.util.store.Streamable;
+import org.apache.fop.render.afp.Streamable;
 
 /**
  * A Resource Group contains a set of overlays.
index 94cb36707a52d1542f3ebdd4e4b1d73e78d302ee..9c88f6862b4922acb10530e905a4a601251ea8ed 100644 (file)
@@ -24,7 +24,7 @@ import java.io.OutputStream;
 import java.io.UnsupportedEncodingException;
 
 import org.apache.fop.render.afp.AFPConstants;
-import org.apache.fop.util.store.Streamable;
+import org.apache.fop.render.afp.Streamable;
 
 /**
  * A simple implementation of a MOD:CA triplet