Class Summary |
ConfigLoader |
Loads the configuration. |
DbConnection |
This class represents datastructures like to following examples:
<dbconnection
name = "jdbc/dbformstest"
isJndi = "true"
/>
(in the example above dbforms asumes that the jndi-entry "jdbc/dbformstest"
is correctly configured in the application-server's database configuration
[i.e. date-sources.xml])
or:
<dbconnection
name = "jdbc:poolman://dbformstest"
isJndi = "false"
class = "com.codestudio.sql.PoolMan"
/>
(in the example above dbforms asumes that the connectionpool-entry
"dbformstest" is correctly configured in the associated connection pool
properties file). |
DbFormsConfig |
This class gets populated with data from the dbforms-config.xml file by the
ConfigServlet. |
DbFormsConfigRegistry |
Registry for DbFormsConfig classes |
DbFormsErrors |
This class gets populated with data from the dbforms-errors.xml file by the
ConfigServlet. |
Error |
This class represents an error tag in dbforms-errors.xml |
EventInfo |
Event information class |
Field |
This class represents a field tag in dbforms-config.xml. |
FieldTypes |
DOCUMENT ME! |
FieldValue |
This helper-class was originally used to maintain the mapped values between
Main-Form and Sub-Form in the taglib package. in meantime it is used as
holder of data in many places. |
FieldValues |
New class to deal with a list of FieldValues. |
ForeignKey |
DOCUMENT ME! |
GrantedPrivileges |
This class represents a "granted-privileges"-tag in dbforms-config.xml
|
Interceptor |
This class holds XML config data defining interceptors for tables. compare
org.dbforms.event.DbEventInterceptor
|
JDBCDataHelper |
this utility-class provides convenience methods for SQL related tasks
|
Message |
This class represents a Message tag in dbforms-error.xml
|
Query |
This class represents the query tag in dbforms-config.xml (dbforms config
xml file)
it's derived from the table class and overloads the necessary methods. |
Reference |
DOCUMENT ME! |
ResultSetVector |
In version 0.5, this class held the actual data of a ResultSet (SELECT from a
table). |
Table |
This class represents a table tag in dbforms-config.xml (dbforms config xml
file). |
TableEvents |
Handles the events related to the linked table object. |