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/Field.java | |
parent | 8f6f16929a3f2ce41ee988cc023fd550c89cba3b (diff) | |
download | postgresql-f3148bef9f9bb43447fbc13d3791734211ac59bc.tar.gz |
JDBC indenting, comment cleanups.
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/Field.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/Field.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/Field.java b/src/interfaces/jdbc/org/postgresql/Field.java index 88507311c9..8ab28057ef 100644 --- a/src/interfaces/jdbc/org/postgresql/Field.java +++ b/src/interfaces/jdbc/org/postgresql/Field.java @@ -6,7 +6,7 @@ import java.util.*; import org.postgresql.*; import org.postgresql.util.*; -/** +/* * org.postgresql.Field is a class used to describe fields in a PostgreSQL * ResultSet */ @@ -20,7 +20,7 @@ public class Field private Connection conn; // Connection Instantation - /** + /* * Construct a field based on the information fed to it. * * @param conn the connection this field came from @@ -37,7 +37,7 @@ public class Field this.mod = mod; } - /** + /* * Constructor without mod parameter. * * @param conn the connection this field came from @@ -50,7 +50,7 @@ public class Field this(conn, name, oid, length, 0); } - /** + /* * @return the oid of this Field's data type */ public int getOID() @@ -58,7 +58,7 @@ public class Field return oid; } - /** + /* * @return the mod of this Field's data type */ public int getMod() @@ -66,7 +66,7 @@ public class Field return mod; } - /** + /* * @return the name of this Field's data type */ public String getName() @@ -74,7 +74,7 @@ public class Field return name; } - /** + /* * @return the length of this Field's data type */ public int getLength() @@ -82,7 +82,7 @@ public class Field return length; } - /** + /* * We also need to get the PG type name as returned by the back end. * * @return the String representation of the PG type of this field @@ -93,7 +93,7 @@ public class Field return conn.getPGType(oid); } - /** + /* * We also need to get the java.sql.types type. * * @return the int representation of the java.sql.types type of this field |