aboutsummaryrefslogtreecommitdiff
path: root/doc/uk/org/ury/database
diff options
context:
space:
mode:
authorMatt Windsor <mattwindsor@btinternet.com>2011-03-21 20:40:57 +0000
committerMatt Windsor <mattwindsor@btinternet.com>2011-03-21 20:40:57 +0000
commit2d073129857a42ab4195cd433c8be152e357033f (patch)
tree967a4bbd1989df9847539a4c4c28e0ca6a79a453 /doc/uk/org/ury/database
parent0645ec66e1618ce4b52e56212c79196dd7c5c608 (diff)
Documentation refresh; ResourceBundle in ShowUtils; probably some format pokery.
Diffstat (limited to 'doc/uk/org/ury/database')
-rw-r--r--doc/uk/org/ury/database/DatabaseDriver.html31
-rw-r--r--doc/uk/org/ury/database/DatabaseItem.html15
-rw-r--r--doc/uk/org/ury/database/UserClass.html20
-rw-r--r--doc/uk/org/ury/database/class-use/DatabaseDriver.html12
-rw-r--r--doc/uk/org/ury/database/class-use/DatabaseItem.html6
-rw-r--r--doc/uk/org/ury/database/class-use/UserClass.html10
-rw-r--r--doc/uk/org/ury/database/exceptions/ConnectionFailureException.html4
-rw-r--r--doc/uk/org/ury/database/exceptions/MissingCredentialsException.html4
-rw-r--r--doc/uk/org/ury/database/exceptions/MissingPropertyException.html4
-rw-r--r--doc/uk/org/ury/database/exceptions/QueryFailureException.html4
-rw-r--r--doc/uk/org/ury/database/exceptions/class-use/ConnectionFailureException.html10
-rw-r--r--doc/uk/org/ury/database/exceptions/class-use/MissingCredentialsException.html10
-rw-r--r--doc/uk/org/ury/database/exceptions/class-use/MissingPropertyException.html6
-rw-r--r--doc/uk/org/ury/database/exceptions/class-use/QueryFailureException.html8
-rw-r--r--doc/uk/org/ury/database/exceptions/package-frame.html4
-rw-r--r--doc/uk/org/ury/database/exceptions/package-summary.html19
-rw-r--r--doc/uk/org/ury/database/exceptions/package-tree.html4
-rw-r--r--doc/uk/org/ury/database/exceptions/package-use.html8
-rw-r--r--doc/uk/org/ury/database/package-frame.html4
-rw-r--r--doc/uk/org/ury/database/package-summary.html33
-rw-r--r--doc/uk/org/ury/database/package-tree.html4
-rw-r--r--doc/uk/org/ury/database/package-use.html35
22 files changed, 137 insertions, 118 deletions
diff --git a/doc/uk/org/ury/database/DatabaseDriver.html b/doc/uk/org/ury/database/DatabaseDriver.html
index 7bd5c25..e308ac0 100644
--- a/doc/uk/org/ury/database/DatabaseDriver.html
+++ b/doc/uk/org/ury/database/DatabaseDriver.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
DatabaseDriver
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
@@ -101,9 +101,8 @@ java.lang.Object
</PRE>
<P>
-A database connection manager that connects to the URY databases
- using suitably privileged accounts, and handles the processing
- of SQL queries.
+A database connection manager that connects to the URY databases using
+ suitably privileged accounts, and handles the processing of SQL queries.
<P>
<P>
@@ -195,13 +194,10 @@ public <B>DatabaseDriver</B>(<A HREF="../../../../uk/org/ury/config/ConfigReader
<DL>
<DT><B>Parameters:</B><DD><CODE>config</CODE> - The config with login details.<DD><CODE>type</CODE> - The user class to log in to the database with.
<DT><B>Throws:</B>
-<DD><CODE>java.lang.IllegalArgumentException</CODE> - if the user class is
- not supported (this should not happen).
-<DD><CODE><A HREF="../../../../uk/org/ury/database/exceptions/MissingCredentialsException.html" title="class in uk.org.ury.database.exceptions">MissingCredentialsException</A></CODE> - if the user class
- login credentials could not be loaded.
-<DD><CODE><A HREF="../../../../uk/org/ury/database/exceptions/ConnectionFailureException.html" title="class in uk.org.ury.database.exceptions">ConnectionFailureException</A></CODE> - if the database
- backend failed to connect to the database
- server.</DL>
+<DD><CODE>java.lang.IllegalArgumentException</CODE> - if the user class is not supported (this should not happen).
+<DD><CODE><A HREF="../../../../uk/org/ury/database/exceptions/MissingCredentialsException.html" title="class in uk.org.ury.database.exceptions">MissingCredentialsException</A></CODE> - if the user class login credentials could not be loaded.
+<DD><CODE><A HREF="../../../../uk/org/ury/database/exceptions/ConnectionFailureException.html" title="class in uk.org.ury.database.exceptions">ConnectionFailureException</A></CODE> - if the database backend failed to connect to the database
+ server.</DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
@@ -242,17 +238,16 @@ public java.sql.ResultSet <B>executeQuery</B>(java.lang.String&nbsp;sql,
<DL>
<DD>Perform a SQL statement with arguments.
- This accepts an array of parameter objects, which must each
- either be String or Integer objects. The objects will be used
- sequentially to fill in '?' placeholders in the query text.
+ This accepts an array of parameter objects, which must each either be
+ String or Integer objects. The objects will be used sequentially to fill
+ in '?' placeholders in the query text.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sql</CODE> - The SQL statement to execute.<DD><CODE>params</CODE> - A list of parameter objects.<DD><CODE>fetchSize</CODE> - The maximum number of query rows to return.
<DT><B>Returns:</B><DD>the set of results from the query.
<DT><B>Throws:</B>
-<DD><CODE>java.lang.IllegalArgumentException</CODE> - if any of the
- parameters is unsupported by the database as
- a statement parameter.
+<DD><CODE>java.lang.IllegalArgumentException</CODE> - if any of the parameters is unsupported by the database as a
+ statement parameter.
<DD><CODE>java.sql.SQLException</CODE> - if a SQL error occurs.</DL>
</DD>
</DL>
diff --git a/doc/uk/org/ury/database/DatabaseItem.html b/doc/uk/org/ury/database/DatabaseItem.html
index 1f2da1b..434c9f9 100644
--- a/doc/uk/org/ury/database/DatabaseItem.html
+++ b/doc/uk/org/ury/database/DatabaseItem.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
DatabaseItem
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
@@ -104,9 +104,8 @@ java.lang.Object
</PRE>
<P>
-An abstract class presenting a template for objects serving as
- a data structure for collections of properties retrieved from
- a SQL database.
+An abstract class presenting a template for objects serving as a data
+ structure for collections of properties retrieved from a SQL database.
<P>
<P>
@@ -197,8 +196,7 @@ public <B>DatabaseItem</B>(java.util.Map&lt;<A HREF="../../../../uk/org/ury/data
<DD>Construct a new item from an existing list of properties.
<P>
<DL>
-<DT><B>Parameters:</B><DD><CODE>properties</CODE> - The map of properties that the new item will
- inherit.</DL>
+<DT><B>Parameters:</B><DD><CODE>properties</CODE> - The map of properties that the new item will inherit.</DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
@@ -237,8 +235,7 @@ public <A HREF="../../../../uk/org/ury/database/DatabaseItem.html" title="type p
<DT><B>Parameters:</B><DD><CODE>property</CODE> - The property to query.
<DT><B>Returns:</B><DD>The property, if it exists.
<DT><B>Throws:</B>
-<DD><CODE><A HREF="../../../../uk/org/ury/database/exceptions/MissingPropertyException.html" title="class in uk.org.ury.database.exceptions">MissingPropertyException</A></CODE> - if the property does
- not exist.</DL>
+<DD><CODE><A HREF="../../../../uk/org/ury/database/exceptions/MissingPropertyException.html" title="class in uk.org.ury.database.exceptions">MissingPropertyException</A></CODE> - if the property does not exist.</DL>
</DD>
</DL>
<HR>
diff --git a/doc/uk/org/ury/database/UserClass.html b/doc/uk/org/ury/database/UserClass.html
index d9231d8..4fcd92e 100644
--- a/doc/uk/org/ury/database/UserClass.html
+++ b/doc/uk/org/ury/database/UserClass.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
UserClass
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
@@ -107,11 +107,11 @@ java.lang.Object
<P>
The various user classes of the database driver.
- These refer to various users in the database proper, and thus
- grant various levels of permission to the program.
+ These refer to various users in the database proper, and thus grant various
+ levels of permission to the program.
- Please use the least privileged user class that works. For most
- cases, READ_ONLY should work perfectly.
+ Please use the least privileged user class that works. For most cases,
+ READ_ONLY should work perfectly.
<P>
<P>
@@ -157,8 +157,8 @@ The various user classes of the database driver.
<TD><CODE><B><A HREF="../../../../uk/org/ury/database/UserClass.html#configName">configName</A></B></CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The name of the tag in the configuration file that contains
- the credentials for this user class.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The name of the tag in the configuration file that contains the
+ credentials for this user class.</TD>
</TR>
</TABLE>
&nbsp;
@@ -253,8 +253,8 @@ configName</H3>
<PRE>
public java.lang.String <B>configName</B></PRE>
<DL>
-<DD>The name of the tag in the configuration file that contains
- the credentials for this user class.
+<DD>The name of the tag in the configuration file that contains the
+ credentials for this user class.
<P>
<DL>
</DL>
diff --git a/doc/uk/org/ury/database/class-use/DatabaseDriver.html b/doc/uk/org/ury/database/class-use/DatabaseDriver.html
index ac09e36..96209b1 100644
--- a/doc/uk/org/ury/database/class-use/DatabaseDriver.html
+++ b/doc/uk/org/ury/database/class-use/DatabaseDriver.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Class uk.org.ury.database.DatabaseDriver
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
@@ -95,7 +95,7 @@ Packages that use <A HREF="../../../../../uk/org/ury/database/DatabaseDriver.htm
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.server"><B>uk.org.ury.server</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>The URY Server kernel.&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.show"><B>uk.org.ury.show</B></A></TD>
@@ -150,7 +150,7 @@ Uses of <A HREF="../../../../../uk/org/ury/database/DatabaseDriver.html" title="
<TD><CODE><B>Server.</B><B><A HREF="../../../../../uk/org/ury/server/Server.html#getDatabaseConnection(uk.org.ury.database.UserClass)">getDatabaseConnection</A></B>(<A HREF="../../../../../uk/org/ury/database/UserClass.html" title="enum in uk.org.ury.database">UserClass</A>&nbsp;userClass)</CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get a database connection using the given user class.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets a database connection using the given user class.</TD>
</TR>
</TABLE>
&nbsp;
@@ -177,8 +177,8 @@ Uses of <A HREF="../../../../../uk/org/ury/database/DatabaseDriver.html" title="
int&nbsp;channel)</CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Given a show and a channel, retrieve a list of all show items
- bound to that channel for the show.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Given a show and a channel, retrieve a list of all show items bound to
+ that channel for the show.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
diff --git a/doc/uk/org/ury/database/class-use/DatabaseItem.html b/doc/uk/org/ury/database/class-use/DatabaseItem.html
index e0d5953..b326c06 100644
--- a/doc/uk/org/ury/database/class-use/DatabaseItem.html
+++ b/doc/uk/org/ury/database/class-use/DatabaseItem.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Class uk.org.ury.database.DatabaseItem
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
@@ -95,7 +95,7 @@ Packages that use <A HREF="../../../../../uk/org/ury/database/DatabaseItem.html"
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.show.item"><B>uk.org.ury.show.item</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>The show item class and related properties.&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
diff --git a/doc/uk/org/ury/database/class-use/UserClass.html b/doc/uk/org/ury/database/class-use/UserClass.html
index 8859b2c..9737548 100644
--- a/doc/uk/org/ury/database/class-use/UserClass.html
+++ b/doc/uk/org/ury/database/class-use/UserClass.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Class uk.org.ury.database.UserClass
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
@@ -91,11 +91,11 @@ Packages that use <A HREF="../../../../../uk/org/ury/database/UserClass.html" ti
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.database"><B>uk.org.ury.database</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>Database services for the URY Presenter Suite.&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.server"><B>uk.org.ury.server</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>The URY Server kernel.&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
@@ -169,7 +169,7 @@ Uses of <A HREF="../../../../../uk/org/ury/database/UserClass.html" title="enum
<TD><CODE><B>Server.</B><B><A HREF="../../../../../uk/org/ury/server/Server.html#getDatabaseConnection(uk.org.ury.database.UserClass)">getDatabaseConnection</A></B>(<A HREF="../../../../../uk/org/ury/database/UserClass.html" title="enum in uk.org.ury.database">UserClass</A>&nbsp;userClass)</CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get a database connection using the given user class.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets a database connection using the given user class.</TD>
</TR>
</TABLE>
&nbsp;
diff --git a/doc/uk/org/ury/database/exceptions/ConnectionFailureException.html b/doc/uk/org/ury/database/exceptions/ConnectionFailureException.html
index 66133bf..1c903a2 100644
--- a/doc/uk/org/ury/database/exceptions/ConnectionFailureException.html
+++ b/doc/uk/org/ury/database/exceptions/ConnectionFailureException.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:02 GMT 2011 -->
<TITLE>
ConnectionFailureException
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
diff --git a/doc/uk/org/ury/database/exceptions/MissingCredentialsException.html b/doc/uk/org/ury/database/exceptions/MissingCredentialsException.html
index 9c54154..a0be23f 100644
--- a/doc/uk/org/ury/database/exceptions/MissingCredentialsException.html
+++ b/doc/uk/org/ury/database/exceptions/MissingCredentialsException.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
MissingCredentialsException
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
diff --git a/doc/uk/org/ury/database/exceptions/MissingPropertyException.html b/doc/uk/org/ury/database/exceptions/MissingPropertyException.html
index b31fb44..90079f5 100644
--- a/doc/uk/org/ury/database/exceptions/MissingPropertyException.html
+++ b/doc/uk/org/ury/database/exceptions/MissingPropertyException.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
MissingPropertyException
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
diff --git a/doc/uk/org/ury/database/exceptions/QueryFailureException.html b/doc/uk/org/ury/database/exceptions/QueryFailureException.html
index ecb2a3b..f6c3ffc 100644
--- a/doc/uk/org/ury/database/exceptions/QueryFailureException.html
+++ b/doc/uk/org/ury/database/exceptions/QueryFailureException.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
QueryFailureException
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
diff --git a/doc/uk/org/ury/database/exceptions/class-use/ConnectionFailureException.html b/doc/uk/org/ury/database/exceptions/class-use/ConnectionFailureException.html
index ea4b6e8..538b71f 100644
--- a/doc/uk/org/ury/database/exceptions/class-use/ConnectionFailureException.html
+++ b/doc/uk/org/ury/database/exceptions/class-use/ConnectionFailureException.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Class uk.org.ury.database.exceptions.ConnectionFailureException
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
@@ -91,11 +91,11 @@ Packages that use <A HREF="../../../../../../uk/org/ury/database/exceptions/Conn
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.database"><B>uk.org.ury.database</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>Database services for the URY Presenter Suite.&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.server"><B>uk.org.ury.server</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>The URY Server kernel.&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
@@ -144,7 +144,7 @@ Uses of <A HREF="../../../../../../uk/org/ury/database/exceptions/ConnectionFail
<TD><CODE><B>Server.</B><B><A HREF="../../../../../../uk/org/ury/server/Server.html#getDatabaseConnection(uk.org.ury.database.UserClass)">getDatabaseConnection</A></B>(<A HREF="../../../../../../uk/org/ury/database/UserClass.html" title="enum in uk.org.ury.database">UserClass</A>&nbsp;userClass)</CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get a database connection using the given user class.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets a database connection using the given user class.</TD>
</TR>
</TABLE>
&nbsp;
diff --git a/doc/uk/org/ury/database/exceptions/class-use/MissingCredentialsException.html b/doc/uk/org/ury/database/exceptions/class-use/MissingCredentialsException.html
index c622c6e..9bf9fa0 100644
--- a/doc/uk/org/ury/database/exceptions/class-use/MissingCredentialsException.html
+++ b/doc/uk/org/ury/database/exceptions/class-use/MissingCredentialsException.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Class uk.org.ury.database.exceptions.MissingCredentialsException
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
@@ -95,11 +95,11 @@ Packages that use <A HREF="../../../../../../uk/org/ury/database/exceptions/Miss
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.database"><B>uk.org.ury.database</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>Database services for the URY Presenter Suite.&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.server"><B>uk.org.ury.server</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>The URY Server kernel.&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
@@ -171,7 +171,7 @@ Uses of <A HREF="../../../../../../uk/org/ury/database/exceptions/MissingCredent
<TD><CODE><B>Server.</B><B><A HREF="../../../../../../uk/org/ury/server/Server.html#getDatabaseConnection(uk.org.ury.database.UserClass)">getDatabaseConnection</A></B>(<A HREF="../../../../../../uk/org/ury/database/UserClass.html" title="enum in uk.org.ury.database">UserClass</A>&nbsp;userClass)</CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get a database connection using the given user class.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets a database connection using the given user class.</TD>
</TR>
</TABLE>
&nbsp;
diff --git a/doc/uk/org/ury/database/exceptions/class-use/MissingPropertyException.html b/doc/uk/org/ury/database/exceptions/class-use/MissingPropertyException.html
index 98d49a6..01efe6a 100644
--- a/doc/uk/org/ury/database/exceptions/class-use/MissingPropertyException.html
+++ b/doc/uk/org/ury/database/exceptions/class-use/MissingPropertyException.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Class uk.org.ury.database.exceptions.MissingPropertyException
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
@@ -91,7 +91,7 @@ Packages that use <A HREF="../../../../../../uk/org/ury/database/exceptions/Miss
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.database"><B>uk.org.ury.database</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>Database services for the URY Presenter Suite.&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
diff --git a/doc/uk/org/ury/database/exceptions/class-use/QueryFailureException.html b/doc/uk/org/ury/database/exceptions/class-use/QueryFailureException.html
index 80e07cc..7a1cb2d 100644
--- a/doc/uk/org/ury/database/exceptions/class-use/QueryFailureException.html
+++ b/doc/uk/org/ury/database/exceptions/class-use/QueryFailureException.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Class uk.org.ury.database.exceptions.QueryFailureException
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
@@ -152,8 +152,8 @@ Uses of <A HREF="../../../../../../uk/org/ury/database/exceptions/QueryFailureEx
int&nbsp;channel)</CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Given a show and a channel, retrieve a list of all show items
- bound to that channel for the show.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Given a show and a channel, retrieve a list of all show items bound to
+ that channel for the show.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
diff --git a/doc/uk/org/ury/database/exceptions/package-frame.html b/doc/uk/org/ury/database/exceptions/package-frame.html
index e04436e..ee2ee10 100644
--- a/doc/uk/org/ury/database/exceptions/package-frame.html
+++ b/doc/uk/org/ury/database/exceptions/package-frame.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
uk.org.ury.database.exceptions
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
diff --git a/doc/uk/org/ury/database/exceptions/package-summary.html b/doc/uk/org/ury/database/exceptions/package-summary.html
index cf790ff..2742df1 100644
--- a/doc/uk/org/ury/database/exceptions/package-summary.html
+++ b/doc/uk/org/ury/database/exceptions/package-summary.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
uk.org.ury.database.exceptions
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
@@ -82,6 +82,12 @@ function windowTitle()
<H2>
Package uk.org.ury.database.exceptions
</H2>
+Exceptions thrown by the database services classes.
+<P>
+<B>See:</B>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="#package_description"><B>Description</B></A>
+<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
@@ -113,6 +119,15 @@ Package uk.org.ury.database.exceptions
&nbsp;
<P>
+<A NAME="package_description"><!-- --></A><H2>
+Package uk.org.ury.database.exceptions Description
+</H2>
+
+<P>
+<P>Exceptions thrown by the database services classes.</P>
+<P>
+
+<P>
<DL>
</DL>
<HR>
diff --git a/doc/uk/org/ury/database/exceptions/package-tree.html b/doc/uk/org/ury/database/exceptions/package-tree.html
index 6db51a7..4cb2755 100644
--- a/doc/uk/org/ury/database/exceptions/package-tree.html
+++ b/doc/uk/org/ury/database/exceptions/package-tree.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
uk.org.ury.database.exceptions Class Hierarchy
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
diff --git a/doc/uk/org/ury/database/exceptions/package-use.html b/doc/uk/org/ury/database/exceptions/package-use.html
index 881f707..857af19 100644
--- a/doc/uk/org/ury/database/exceptions/package-use.html
+++ b/doc/uk/org/ury/database/exceptions/package-use.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Package uk.org.ury.database.exceptions
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
@@ -95,7 +95,7 @@ Packages that use <A HREF="../../../../../uk/org/ury/database/exceptions/package
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.database"><B>uk.org.ury.database</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>Database services for the URY Presenter Suite.&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.library"><B>uk.org.ury.library</B></A></TD>
@@ -103,7 +103,7 @@ Packages that use <A HREF="../../../../../uk/org/ury/database/exceptions/package
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.server"><B>uk.org.ury.server</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>The URY Server kernel.&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.show"><B>uk.org.ury.show</B></A></TD>
diff --git a/doc/uk/org/ury/database/package-frame.html b/doc/uk/org/ury/database/package-frame.html
index 80be895..3f3d02c 100644
--- a/doc/uk/org/ury/database/package-frame.html
+++ b/doc/uk/org/ury/database/package-frame.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
uk.org.ury.database
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
diff --git a/doc/uk/org/ury/database/package-summary.html b/doc/uk/org/ury/database/package-summary.html
index 1f8e620..bbb8812 100644
--- a/doc/uk/org/ury/database/package-summary.html
+++ b/doc/uk/org/ury/database/package-summary.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
uk.org.ury.database
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
@@ -82,6 +82,12 @@ function windowTitle()
<H2>
Package uk.org.ury.database
</H2>
+Database services for the URY Presenter Suite.
+<P>
+<B>See:</B>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="#package_description"><B>Description</B></A>
+<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
@@ -90,15 +96,13 @@ Package uk.org.ury.database
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../uk/org/ury/database/DatabaseDriver.html" title="class in uk.org.ury.database">DatabaseDriver</A></B></TD>
-<TD>A database connection manager that connects to the URY databases
- using suitably privileged accounts, and handles the processing
- of SQL queries.</TD>
+<TD>A database connection manager that connects to the URY databases using
+ suitably privileged accounts, and handles the processing of SQL queries.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../uk/org/ury/database/DatabaseItem.html" title="class in uk.org.ury.database">DatabaseItem&lt;E,T&gt;</A></B></TD>
-<TD>An abstract class presenting a template for objects serving as
- a data structure for collections of properties retrieved from
- a SQL database.</TD>
+<TD>An abstract class presenting a template for objects serving as a data
+ structure for collections of properties retrieved from a SQL database.</TD>
</TR>
</TABLE>
&nbsp;
@@ -118,6 +122,19 @@ Package uk.org.ury.database
&nbsp;
<P>
+<A NAME="package_description"><!-- --></A><H2>
+Package uk.org.ury.database Description
+</H2>
+
+<P>
+<P>Database services for the URY Presenter Suite.</P>
+ <P>The classes provided within this package are expected to be
+ used by the back-end through utility classes, and <EM>not</EM>
+ by the frontend, which should use the server API to indirectly
+ query the database.</P>
+<P>
+
+<P>
<DL>
</DL>
<HR>
diff --git a/doc/uk/org/ury/database/package-tree.html b/doc/uk/org/ury/database/package-tree.html
index b2ff806..fa6cbdf 100644
--- a/doc/uk/org/ury/database/package-tree.html
+++ b/doc/uk/org/ury/database/package-tree.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:37 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
uk.org.ury.database Class Hierarchy
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
diff --git a/doc/uk/org/ury/database/package-use.html b/doc/uk/org/ury/database/package-use.html
index 9a72514..25e0a60 100644
--- a/doc/uk/org/ury/database/package-use.html
+++ b/doc/uk/org/ury/database/package-use.html
@@ -2,12 +2,12 @@
<!--NewPage-->
<HTML>
<HEAD>
-<!-- Generated by javadoc (build 1.6.0_20) on Sun Mar 20 03:05:38 GMT 2011 -->
+<!-- Generated by javadoc (build 1.6.0_20) on Mon Mar 21 17:00:03 GMT 2011 -->
<TITLE>
Uses of Package uk.org.ury.database
</TITLE>
-<META NAME="date" CONTENT="2011-03-20">
+<META NAME="date" CONTENT="2011-03-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
@@ -91,7 +91,7 @@ Packages that use <A HREF="../../../../uk/org/ury/database/package-summary.html"
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.database"><B>uk.org.ury.database</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>Database services for the URY Presenter Suite.&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.library"><B>uk.org.ury.library</B></A></TD>
@@ -103,7 +103,7 @@ Packages that use <A HREF="../../../../uk/org/ury/database/package-summary.html"
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.server"><B>uk.org.ury.server</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>The URY Server kernel.&nbsp;</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.show"><B>uk.org.ury.show</B></A></TD>
@@ -111,7 +111,7 @@ Packages that use <A HREF="../../../../uk/org/ury/database/package-summary.html"
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#uk.org.ury.show.item"><B>uk.org.ury.show.item</B></A></TD>
-<TD>&nbsp;&nbsp;</TD>
+<TD>The show item class and related properties.&nbsp;</TD>
</TR>
</TABLE>
&nbsp;
@@ -141,9 +141,8 @@ Classes in <A HREF="../../../../uk/org/ury/database/package-summary.html">uk.org
<TD><B><A HREF="../../../../uk/org/ury/database/class-use/DatabaseDriver.html#uk.org.ury.library"><B>DatabaseDriver</B></A></B>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A database connection manager that connects to the URY databases
- using suitably privileged accounts, and handles the processing
- of SQL queries.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A database connection manager that connects to the URY databases using
+ suitably privileged accounts, and handles the processing of SQL queries.</TD>
</TR>
</TABLE>
&nbsp;
@@ -158,9 +157,8 @@ Classes in <A HREF="../../../../uk/org/ury/database/package-summary.html">uk.org
<TD><B><A HREF="../../../../uk/org/ury/database/class-use/DatabaseItem.html#uk.org.ury.library.item"><B>DatabaseItem</B></A></B>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;An abstract class presenting a template for objects serving as
- a data structure for collections of properties retrieved from
- a SQL database.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;An abstract class presenting a template for objects serving as a data
+ structure for collections of properties retrieved from a SQL database.</TD>
</TR>
</TABLE>
&nbsp;
@@ -175,9 +173,8 @@ Classes in <A HREF="../../../../uk/org/ury/database/package-summary.html">uk.org
<TD><B><A HREF="../../../../uk/org/ury/database/class-use/DatabaseDriver.html#uk.org.ury.server"><B>DatabaseDriver</B></A></B>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A database connection manager that connects to the URY databases
- using suitably privileged accounts, and handles the processing
- of SQL queries.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A database connection manager that connects to the URY databases using
+ suitably privileged accounts, and handles the processing of SQL queries.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><B><A HREF="../../../../uk/org/ury/database/class-use/UserClass.html#uk.org.ury.server"><B>UserClass</B></A></B>
@@ -198,9 +195,8 @@ Classes in <A HREF="../../../../uk/org/ury/database/package-summary.html">uk.org
<TD><B><A HREF="../../../../uk/org/ury/database/class-use/DatabaseDriver.html#uk.org.ury.show"><B>DatabaseDriver</B></A></B>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A database connection manager that connects to the URY databases
- using suitably privileged accounts, and handles the processing
- of SQL queries.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A database connection manager that connects to the URY databases using
+ suitably privileged accounts, and handles the processing of SQL queries.</TD>
</TR>
</TABLE>
&nbsp;
@@ -215,9 +211,8 @@ Classes in <A HREF="../../../../uk/org/ury/database/package-summary.html">uk.org
<TD><B><A HREF="../../../../uk/org/ury/database/class-use/DatabaseItem.html#uk.org.ury.show.item"><B>DatabaseItem</B></A></B>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;An abstract class presenting a template for objects serving as
- a data structure for collections of properties retrieved from
- a SQL database.</TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;An abstract class presenting a template for objects serving as a data
+ structure for collections of properties retrieved from a SQL database.</TD>
</TR>
</TABLE>
&nbsp;