diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-11-19 22:33:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-11-19 22:33:39 +0000 |
commit | f3148bef9f9bb43447fbc13d3791734211ac59bc (patch) | |
tree | 8cc8e564ed6b7cffefd57d41e715870ee54cef5e /src/interfaces/jdbc/org/postgresql/fastpath/FastpathArg.java | |
parent | 8f6f16929a3f2ce41ee988cc023fd550c89cba3b (diff) | |
download | postgresql-f3148bef9f9bb43447fbc13d3791734211ac59bc.tar.gz |
JDBC indenting, comment cleanups.
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/fastpath/FastpathArg.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/fastpath/FastpathArg.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/fastpath/FastpathArg.java b/src/interfaces/jdbc/org/postgresql/fastpath/FastpathArg.java index 7234df10d8..1539ee8a14 100644 --- a/src/interfaces/jdbc/org/postgresql/fastpath/FastpathArg.java +++ b/src/interfaces/jdbc/org/postgresql/fastpath/FastpathArg.java @@ -7,7 +7,7 @@ import java.util.*; import java.sql.*; import org.postgresql.util.*; -/** +/* * Each fastpath call requires an array of arguments, the number and type * dependent on the function being called. * @@ -22,22 +22,22 @@ import org.postgresql.util.*; */ public class FastpathArg { - /** + /* * Type of argument, true=integer, false=byte[] */ public boolean type; - /** + /* * Integer value if type=true */ public int value; - /** + /* * Byte value if type=false; */ public byte[] bytes; - /** + /* * Constructs an argument that consists of an integer value * @param value int value to set */ @@ -47,7 +47,7 @@ public class FastpathArg this.value = value; } - /** + /* * Constructs an argument that consists of an array of bytes * @param bytes array to store */ @@ -57,7 +57,7 @@ public class FastpathArg this.bytes = bytes; } - /** + /* * Constructs an argument that consists of part of a byte array * @param buf source array * @param off offset within array @@ -70,7 +70,7 @@ public class FastpathArg System.arraycopy(buf, off, bytes, 0, len); } - /** + /* * Constructs an argument that consists of a String. * @param s String to store */ @@ -79,7 +79,7 @@ public class FastpathArg this(s.getBytes()); } - /** + /* * This sends this argument down the network stream. * * <p>The stream sent consists of the length.int4 then the contents. |