diff -r d58599c7cdef -r 9a90236ab64c src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java --- a/src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java Wed Mar 13 10:37:30 2019 -0700 +++ b/src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java Wed Mar 13 14:10:18 2019 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -39,7 +39,7 @@ * The basic functions include having properties and sending event notifications, * which all JavaBeans™ components must implement. * - *

1.0 Overview

+ *

1.0 Overview

* The BaseRowSet class provides the core functionality * for all RowSet implementations, * and all standard implementations may use this class in combination with @@ -72,7 +72,7 @@ * * * - *

2.0 Setting Properties

+ *

2.0 Setting Properties

* All rowsets maintain a set of properties, which will usually be set using * a tool. The number and kinds of properties a rowset has will vary, * depending on what the RowSet implementation does and how it gets @@ -95,7 +95,7 @@ * Interface™ (JNDI) API. This registration * is usually done by a person acting in the capacity of a system administrator. * - *

3.0 Setting the Command and Its Parameters

+ *

3.0 Setting the Command and Its Parameters

* When a rowset gets its data from a relational database, it executes a command (a query) * that produces a ResultSet object. This query is the command that is set * for the RowSet object's command property. The rowset populates itself with data by reading the @@ -143,7 +143,7 @@ * SerialArray, SerialClob, SerialBlob * and SerialRef objects respectively. * - *

4.0 Handling of Parameters Behind the Scenes

+ *

4.0 Handling of Parameters Behind the Scenes

* * NOTE: The BaseRowSet class provides two kinds of setter methods, * those that set properties and those that set placeholder parameters. The setter @@ -227,7 +227,7 @@ * RowSet implementations extending this class; it is not normally called by an * application programmer directly. * -*

5.0 Event Notification

+*

5.0 Event Notification

* The BaseRowSet class provides the event notification * mechanism for rowsets. It contains the field * listeners, methods for adding and removing listeners, and @@ -255,7 +255,7 @@ * What the listener does with this information, which may be nothing, depends on how it was * implemented. * -*

6.0 Default Behavior

+*

6.0 Default Behavior

* A default BaseRowSet object is initialized with many starting values. * * The following is true of a default RowSet instance that extends