From: Vincent Hennebert Date: Thu, 13 Dec 2007 11:35:17 +0000 (+0000) Subject: Fixed @throws statements in javadoc X-Git-Tag: fop-0_95beta~218 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e986da96554abe0275ecaf80abbaddad7506df42;p=xmlgraphics-fop.git Fixed @throws statements in javadoc git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@603890 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/render/afp/modca/AbstractStructuredAFPObject.java b/src/java/org/apache/fop/render/afp/modca/AbstractStructuredAFPObject.java index bc2bf9f99..f9348b81c 100644 --- a/src/java/org/apache/fop/render/afp/modca/AbstractStructuredAFPObject.java +++ b/src/java/org/apache/fop/render/afp/modca/AbstractStructuredAFPObject.java @@ -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 {