diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-20 12:54:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-08-20 12:54:24 +0100 |
commit | f6a62d9e4106f36aff899c847d63e3198532796e (patch) | |
tree | 2c006788af8c1367510d7cf2706fd1b8cdaa6b12 /connectivity | |
parent | af4ca5a8c6e2848cb855a15986d5c4c9991140bf (diff) |
Java update - fix various javadoc issues
Along the way, remove some javadoc comments that are completely incorrect.
Change-Id: I02f96b6cbe665d2c10bd6ee245a7d8e2eef0f755
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeOutputStream.java | 12 | ||||
-rw-r--r-- | connectivity/qa/connectivity/tools/CRMDatabase.java | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeOutputStream.java b/connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeOutputStream.java index 289593807688..445669a16c10 100644 --- a/connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeOutputStream.java +++ b/connectivity/com/sun/star/sdbcx/comp/hsqldb/StorageNativeOutputStream.java @@ -67,7 +67,7 @@ public class StorageNativeOutputStream { * @param b the data. * @param off the start offset in the data. * @param len the number of bytes to write. - * @exception IOException if an I/O error occurs. In particular, + * @exception java.io.IOException if an I/O error occurs. In particular, * an <code>IOException</code> is thrown if the output * stream is closed. */ @@ -80,7 +80,7 @@ public class StorageNativeOutputStream { * <code>write(b, 0, b.length)</code>. * * @param b the data. - * @exception IOException if an I/O error occurs. + * @exception java.io.IOException if an I/O error occurs. * @see java.io.OutputStream#write(byte[], int, int) */ public native void write(String key,String _file,byte[] b) throws java.io.IOException; @@ -95,7 +95,7 @@ public class StorageNativeOutputStream { * @param key The name of the data source. * @param _file The name of the file to write to. * - * @exception IOException if an I/O error occurs. + * @exception java.io.IOException if an I/O error occurs. */ public native void close(String key,String _file) throws java.io.IOException; @@ -112,7 +112,7 @@ public class StorageNativeOutputStream { * @param key The name of the data source. * @param _file The name of the file to write to. * @param b the <code>byte</code>. - * @exception IOException if an I/O error occurs. In particular, + * @exception java.io.IOException if an I/O error occurs. In particular, * an <code>IOException</code> may be thrown if the * output stream has been closed. */ @@ -130,7 +130,7 @@ public class StorageNativeOutputStream { * @param key The name of the data source. * @param _file The name of the file to write to. * - * @exception IOException if an I/O error occurs. + * @exception java.io.IOException if an I/O error occurs. */ public native void flush(String key,String _file) throws java.io.IOException; @@ -151,7 +151,7 @@ public class StorageNativeOutputStream { * be flushed (for example, by invoking * OutputStream.flush) before that data will be affected by sync. * - * @exception IOException + * @exception java.io.IOException * Thrown when the buffers cannot be flushed, * or because the system cannot guarantee that all the * buffers have been synchronized with physical media. diff --git a/connectivity/qa/connectivity/tools/CRMDatabase.java b/connectivity/qa/connectivity/tools/CRMDatabase.java index 72aa9c76b231..2e1ae231658f 100644 --- a/connectivity/qa/connectivity/tools/CRMDatabase.java +++ b/connectivity/qa/connectivity/tools/CRMDatabase.java @@ -83,7 +83,7 @@ public class CRMDatabase * creates a CRMDatabase from an existing document, given by URL * @param _orb * @param _existingDocumentURL - * @throws Exceptio + * @throws Exception */ public CRMDatabase( XMultiServiceFactory _orb, final String _existingDocumentURL ) throws Exception { |