comparison src/main/java/org/monetdb/jdbc/MonetDriver.java.in @ 451:3dfcd06fd8ba

Correcting typos in documentation text. Also improved the readability of the generated javadoc documents.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 04 Mar 2021 18:57:51 +0100 (2021-03-04)
parents 50e43af49d47
children 6aa38e8c0f2d
comparison
equal deleted inserted replaced
450:b9f82064fe0c 451:3dfcd06fd8ba
18 import java.sql.Types; 18 import java.sql.Types;
19 import java.util.Map.Entry; 19 import java.util.Map.Entry;
20 import java.util.Properties; 20 import java.util.Properties;
21 21
22 /** 22 /**
23 * A JDBC Driver suitable for the MonetDB RDBMS. 23 *<pre>
24 * A JDBC {@link Driver} suitable for the MonetDB RDBMS.
24 * 25 *
25 * This driver will be used by the DriverManager to determine if an URL 26 * This driver will be used by the DriverManager to determine if an URL
26 * is to be handled by this driver, and if it does, then this driver 27 * is to be handled by this driver, and if it does, then this driver
27 * will supply a Connection suitable for MonetDB. 28 * will supply a Connection suitable for MonetDB.
28 * 29 *
32 * 33 *
33 * This Driver supports MonetDB database URLs. MonetDB URLs are defined as: 34 * This Driver supports MonetDB database URLs. MonetDB URLs are defined as:
34 * <tt>jdbc:monetdb://&lt;host&gt;[:&lt;port&gt;]/&lt;database&gt;</tt> 35 * <tt>jdbc:monetdb://&lt;host&gt;[:&lt;port&gt;]/&lt;database&gt;</tt>
35 * where [:&lt;port&gt;] denotes that a port is optional. If not 36 * where [:&lt;port&gt;] denotes that a port is optional. If not
36 * given the default (@JDBC_DEF_PORT@) will be used. 37 * given the default (@JDBC_DEF_PORT@) will be used.
38 *</pre>
37 * 39 *
38 * @author Fabian Groffen 40 * @author Fabian Groffen
39 * @version @JDBC_MAJOR@.@JDBC_MINOR@ (@JDBC_VER_SUFFIX@) based on MCL v@MCL_MAJOR@.@MCL_MINOR@" 41 * @version @JDBC_MAJOR@.@JDBC_MINOR@ (@JDBC_VER_SUFFIX@) based on MCL v@MCL_MAJOR@.@MCL_MINOR@"
40 */ 42 */
41 public class MonetDriver implements Driver { /* cannot (yet) be final as nl.cwi.monetdb.jdbc.MonetDriver extends this class */ 43 public class MonetDriver implements Driver { /* cannot (yet) be final as nl.cwi.monetdb.jdbc.MonetDriver extends this class */