1111import org .postgresql .*;
1212import org .postgresql .util .*;
1313
14- /*
14+ /**
1515 * A ResultSetMetaData object can be used to find out about the types and
1616 * properties of the columns in a ResultSet
1717 *
@@ -403,7 +403,7 @@ public String getColumnTypeName(int column) throws SQLException
403403return getField (column ).getPGType ();
404404}
405405
406- /*
406+ /**
407407 * Is the column definitely not writable? In reality, we would
408408 * have to check the GRANT/REVOKE stuff for this to be effective,
409409 * and I haven't really looked into that yet, so this will get
@@ -418,7 +418,7 @@ public boolean isReadOnly(int column) throws SQLException
418418return false ;
419419}
420420
421- /*
421+ /**
422422 * Is it possible for a write on the column to succeed? Again, we
423423 * would in reality have to check the GRANT/REVOKE stuff, which
424424 * I haven't worked with as yet. However, if it isn't ReadOnly, then
@@ -433,7 +433,7 @@ public boolean isWritable(int column) throws SQLException
433433return !isReadOnly (column );
434434}
435435
436- /*
436+ /**
437437 * Will a write on this column definately succeed?Hmmm...this
438438 * is a bad one, since the two preceding functions have not been
439439 * really defined.I cannot tell is the short answer.I thus
@@ -452,7 +452,7 @@ public boolean isDefinitelyWritable(int column) throws SQLException
452452//END OF PUBLIC INTERFACE
453453// ********************************************************
454454
455- /*
455+ /**
456456 * For several routines in this package, we need to convert
457457 * a columnIndex into a Field[] descriptor. Rather than do
458458 * the same code several times, here it is.
@@ -533,6 +533,6 @@ public String getColumnClassName(int column) throws SQLException
533533default :
534534throw org .postgresql .Driver .notImplemented ();
535535 }
536-
536+ }
537537}
538538