Javadoc Fixes

This commit is contained in:
astrelsky 2019-11-25 23:41:54 -05:00
parent 9a470a9dc7
commit ebde7cd6d2
No known key found for this signature in database
GPG key ID: FA88FA97D6877C37
659 changed files with 1690 additions and 3968 deletions

View file

@ -670,7 +670,6 @@ public class DBHandle {
* @param newDatabaseId database ID to be forced for new database or null to generate
* new database ID
* @param monitor progress monitor
* @param associateWithNewFile if true this handle will be associated with the new file
* @throws IOException if IO error occurs
* @throws CancelledException if monitor cancels operation
*/
@ -915,10 +914,11 @@ public class DBHandle {
}
/**
*
* @param table
* @param id
* @throws DuplicateNameException
* Changes the name of an existing table.
* @param oldName the old name of the table
* @param newName the new name of the table
* @throws DuplicateNameException if a table with the new name already exists
* @return true if the name was changed successfully
*/
public synchronized boolean setTableName(String oldName, String newName)
throws DuplicateNameException {