aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/geometric/PGpolygon.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/geometric/PGpolygon.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/geometric/PGpolygon.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/geometric/PGpolygon.java b/src/interfaces/jdbc/org/postgresql/geometric/PGpolygon.java
index 12c45fd709f..5ae18ed3f4d 100644
--- a/src/interfaces/jdbc/org/postgresql/geometric/PGpolygon.java
+++ b/src/interfaces/jdbc/org/postgresql/geometric/PGpolygon.java
@@ -4,17 +4,17 @@ import java.io.*;
import java.sql.*;
import org.postgresql.util.*;
-/**
+/*
* This implements the polygon datatype within PostgreSQL.
*/
public class PGpolygon extends PGobject implements Serializable, Cloneable
{
- /**
+ /*
* The points defining the polygon
*/
public PGpoint points[];
- /**
+ /*
* Creates a polygon using an array of PGpoints
*
* @param points the points defining the polygon
@@ -25,7 +25,7 @@ public class PGpolygon extends PGobject implements Serializable, Cloneable
this.points = points;
}
- /**
+ /*
* @param s definition of the circle in PostgreSQL's syntax.
* @exception SQLException on conversion failure
*/
@@ -35,7 +35,7 @@ public class PGpolygon extends PGobject implements Serializable, Cloneable
setValue(s);
}
- /**
+ /*
* Required by the driver
*/
public PGpolygon()
@@ -43,7 +43,7 @@ public class PGpolygon extends PGobject implements Serializable, Cloneable
setType("polygon");
}
- /**
+ /*
* @param s Definition of the polygon in PostgreSQL's syntax
* @exception SQLException on conversion failure
*/
@@ -56,7 +56,7 @@ public class PGpolygon extends PGobject implements Serializable, Cloneable
points[p] = new PGpoint(t.getToken(p));
}
- /**
+ /*
* @param obj Object to compare with
* @return true if the two boxes are identical
*/
@@ -78,7 +78,7 @@ public class PGpolygon extends PGobject implements Serializable, Cloneable
return false;
}
- /**
+ /*
* This must be overidden to allow the object to be cloned
*/
public Object clone()
@@ -89,7 +89,7 @@ public class PGpolygon extends PGobject implements Serializable, Cloneable
return new PGpolygon(ary);
}
- /**
+ /*
* @return the PGpolygon in the syntax expected by org.postgresql
*/
public String getValue()