]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed @throws statements in javadoc
authorVincent Hennebert <vhennebert@apache.org>
Thu, 13 Dec 2007 11:35:17 +0000 (11:35 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Thu, 13 Dec 2007 11:35:17 +0000 (11:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@603890 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/afp/modca/AbstractStructuredAFPObject.java

index bc2bf9f9976905e6e40f8a3c96be986586697193..f9348b81c7d4531dcf5bee83652ebcec75ac295f 100644 (file)
@@ -45,7 +45,7 @@ public abstract class AbstractStructuredAFPObject extends AbstractNamedAFPObject
     /**
      * Helper method to write the start of the Object.
      * @param os The stream to write to
-     * @throws an I/O exception if one occurred
+     * @throws IOException an I/O exception if one occurred
      */
     protected void writeStart(OutputStream os) throws IOException {
     }
@@ -53,7 +53,7 @@ public abstract class AbstractStructuredAFPObject extends AbstractNamedAFPObject
     /**
      * Helper method to write the contents of the Object.
      * @param os The stream to write to
-     * @throws an I/O exception if one occurred
+     * @throws IOException an I/O exception if one occurred
      */
     protected void writeContent(OutputStream os) throws IOException {
     }
@@ -61,7 +61,7 @@ public abstract class AbstractStructuredAFPObject extends AbstractNamedAFPObject
     /**
      * Helper method to write the end of the Object.
      * @param os The stream to write to
-     * @throws an I/O exception if one occurred
+     * @throws IOException an I/O exception if one occurred
      */
     protected void writeEnd(OutputStream os) throws IOException {
     }    
@@ -69,7 +69,7 @@ public abstract class AbstractStructuredAFPObject extends AbstractNamedAFPObject
     /**
      * Accessor method to write the AFP datastream for the Image Object
      * @param os The stream to write to
-     * @throws java.io.IOException in the event that an I/O exception occurred
+     * @throws IOException in the event that an I/O exception occurred
      */
     public void writeDataStream(OutputStream os)
         throws IOException {