summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/util/PGobject.java
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-11-19 22:33:39 +0000
committerBruce Momjian <bruce@momjian.us>2001-11-19 22:33:39 +0000
commitf3148bef9f9bb43447fbc13d3791734211ac59bc (patch)
tree8cc8e564ed6b7cffefd57d41e715870ee54cef5e /src/interfaces/jdbc/org/postgresql/util/PGobject.java
parent8f6f16929a3f2ce41ee988cc023fd550c89cba3b (diff)
downloadpostgresql-f3148bef9f9bb43447fbc13d3791734211ac59bc.tar.gz
JDBC indenting, comment cleanups.
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/util/PGobject.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/util/PGobject.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/util/PGobject.java b/src/interfaces/jdbc/org/postgresql/util/PGobject.java
index 28df4940c8..3370c66eef 100644
--- a/src/interfaces/jdbc/org/postgresql/util/PGobject.java
+++ b/src/interfaces/jdbc/org/postgresql/util/PGobject.java
@@ -5,7 +5,7 @@ import java.lang.*;
import java.sql.*;
import java.util.*;
-/**
+/*
* org.postgresql.PG_Object is a class used to describe unknown types
* An unknown type is any type that is unknown by JDBC Standards
*
@@ -18,14 +18,14 @@ public class PGobject implements Serializable, Cloneable
protected String type;
protected String value;
- /**
+ /*
* This is called by org.postgresql.Connection.getObject() to create the
* object.
*/
public PGobject()
{}
- /**
+ /*
* This method sets the type of this object.
*
* <p>It should not be extended by subclasses, hence its final
@@ -37,7 +37,7 @@ public class PGobject implements Serializable, Cloneable
this.type = type;
}
- /**
+ /*
* This method sets the value of this object. It must be overidden.
*
* @param value a string representation of the value of the object
@@ -48,7 +48,7 @@ public class PGobject implements Serializable, Cloneable
this.value = value;
}
- /**
+ /*
* As this cannot change during the life of the object, it's final.
* @return the type name of this object
*/
@@ -57,7 +57,7 @@ public class PGobject implements Serializable, Cloneable
return type;
}
- /**
+ /*
* This must be overidden, to return the value of the object, in the
* form required by org.postgresql.
* @return the value of this object
@@ -67,7 +67,7 @@ public class PGobject implements Serializable, Cloneable
return value;
}
- /**
+ /*
* This must be overidden to allow comparisons of objects
* @param obj Object to compare with
* @return true if the two boxes are identical
@@ -79,7 +79,7 @@ public class PGobject implements Serializable, Cloneable
return false;
}
- /**
+ /*
* This must be overidden to allow the object to be cloned
*/
public Object clone()
@@ -90,7 +90,7 @@ public class PGobject implements Serializable, Cloneable
return obj;
}
- /**
+ /*
* This is defined here, so user code need not overide it.
* @return the value of this object, in the syntax expected by org.postgresql
*/