diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2007-12-13 11:35:17 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2007-12-13 11:35:17 +0000 |
commit | e986da96554abe0275ecaf80abbaddad7506df42 (patch) | |
tree | cee2ff4dddeea020199893bc0dccbc9d4969058e /src/java/org | |
parent | a1dc7b36c1dbc6e43cc683e60dd0534dbe1732a8 (diff) | |
download | xmlgraphics-fop-e986da96554abe0275ecaf80abbaddad7506df42.tar.gz xmlgraphics-fop-e986da96554abe0275ecaf80abbaddad7506df42.zip |
Fixed @throws statements in javadoc
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@603890 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r-- | src/java/org/apache/fop/render/afp/modca/AbstractStructuredAFPObject.java | 8 |
1 files changed, 4 insertions, 4 deletions
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 { |