/**
* 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 {
}
/**
* 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 {
}
/**
* 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 {
}
/**
* 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 {