--- old/src/share/classes/javax/sql/StatementEvent.java 2014-04-09 04:40:17.806234711 -0700 +++ new/src/share/classes/javax/sql/StatementEvent.java 2014-04-09 04:40:17.663233764 -0700 @@ -37,7 +37,7 @@ * registered with a PooledConnection. This occurs when the driver determines that a * PreparedStatement that is associated with the PooledConnection has been closed or the driver determines * is invalid. - *

+ * * @since 1.6 */ public class StatementEvent extends EventObject { @@ -50,11 +50,11 @@ * Constructs a StatementEvent with the specified PooledConnection and * PreparedStatement. The SQLException contained in the event defaults to * null. - *

+ * * @param con The PooledConnection that the closed or invalid * PreparedStatementis associated with. * @param statement The PreparedStatement that is being closed or is invalid - *

+ * * @throws IllegalArgumentException if con is null. * * @since 1.6 @@ -71,7 +71,7 @@ /** * Constructs a StatementEvent with the specified PooledConnection, * PreparedStatement and SQLException - *

+ * * @param con The PooledConnection that the closed or invalid PreparedStatement * is associated with. * @param statement The PreparedStatement that is being closed or is invalid @@ -79,7 +79,7 @@ * the application * * @throws IllegalArgumentException if con is null. - *

+ * * @since 1.6 */ public StatementEvent(PooledConnection con, @@ -94,9 +94,9 @@ /** * Returns the PreparedStatement that is being closed or is invalid - *

+ * * @return The PreparedStatement that is being closed or is invalid - *

+ * * @since 1.6 */ public PreparedStatement getStatement() { @@ -106,9 +106,9 @@ /** * Returns the SQLException the driver is about to throw - *

+ * * @return The SQLException the driver is about to throw - *

+ * * @since 1.6 */ public SQLException getSQLException() {