A B C D E F G H I J L M N O P Q R S T U X

A

AbstractErrorMapper - class org.j2ee.dao.errors.AbstractErrorMapper.
This abstrac class is used to convert a database dependant representation of SQL Error Code to a list of known error codes defined into the interface DAOErrorHandler Last modified $Date: 2004/05/18 10:50:14 $
AbstractErrorMapper() - Constructor for class org.j2ee.dao.errors.AbstractErrorMapper
 
AbstractHibernateDAOAction - class org.j2ee.dao.AbstractHibernateDAOAction.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:12 $
AbstractHibernateDAOAction() - Constructor for class org.j2ee.dao.AbstractHibernateDAOAction
Default constructor, set HQL operation as default
AbstractHibernateDAOAction(int) - Constructor for class org.j2ee.dao.AbstractHibernateDAOAction
Specialized constructor
AbstractJdbcDAOAction - class org.j2ee.dao.AbstractJdbcDAOAction.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:12 $
AbstractJdbcDAOAction() - Constructor for class org.j2ee.dao.AbstractJdbcDAOAction
 
AbstractJdbcDAOAction(int) - Constructor for class org.j2ee.dao.AbstractJdbcDAOAction
 
AbstractPageByPageAction - class org.j2ee.dao.util.AbstractPageByPageAction.
Limit—with offset Objective: Want to only get n rows in the result set, and we want the first y rows in the result set discarded.
AbstractPageByPageAction() - Constructor for class org.j2ee.dao.util.AbstractPageByPageAction
 
AbstractPageByPageAction(int, int) - Constructor for class org.j2ee.dao.util.AbstractPageByPageAction
 
action - Variable in class org.j2ee.dao.util.AbstractPageByPageAction
 
ACTION_CLASS_SUFFIX - Static variable in class org.j2ee.dao.DAOFactory
 
ACTIONS - Static variable in class org.j2ee.dao.gen.Util
 
ACTIONS_ENTRY - Static variable in class org.j2ee.dao.DAOFactory
 
ACTIONS_ENTRY - Static variable in class org.j2ee.dao.gen.DAOGenerator
 
actions() - Method in class org.j2ee.dao.MacroDAOAction
 
add(DAOAction) - Method in class org.j2ee.dao.MacroDAOAction
 
add(FieldData) - Method in class org.j2ee.dao.gen.TableData
 
addClass(Class) - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
A wrapped method for Hibernate addClass(Class persistenClass) but without throwing the MappingException.
ARRAY - Static variable in class org.j2ee.dao.gen.GenTypes
 

B

BASE_PATH - Static variable in class org.j2ee.dao.gen.Util
 
beginTransaction() - Method in interface org.j2ee.dao.DAOActionProcessor
Start a new DAO transaction.
beginTransaction() - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
Start a new Hibernate transaction.
beginTransaction() - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
Start a new DAO transaction.
BIGDECIMAL - Static variable in class org.j2ee.dao.gen.GenTypes
 
BLOB - Static variable in class org.j2ee.dao.gen.GenTypes
 
BOOLEAN - Static variable in class org.j2ee.dao.gen.GenTypes
 
BYTE - Static variable in class org.j2ee.dao.gen.GenTypes
 
BYTEA - Static variable in class org.j2ee.dao.gen.GenTypes
 

C

cachPreparedStatement(PreparedStatement) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
cachPreparedStatement(PreparedStatement) - Method in interface org.j2ee.dao.JdbcDAOAction
 
cachPreparedStatement(PreparedStatement) - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
CALL_FUNCTION - Static variable in interface org.j2ee.dao.JdbcDAOAction
 
CALL_PROCEDURE - Static variable in interface org.j2ee.dao.JdbcDAOAction
 
CHECK_CONSTRAINT_FAILED - Static variable in interface org.j2ee.dao.DAOErrorHandler
Some check constraint failed
checkConstraintFailed(DAOAction, DAOActionProcessor, Throwable) - Method in class org.j2ee.dao.util.GenericErrorHandler
raised when some check constraint fail
clear() - Method in class org.j2ee.dao.MacroDAOAction
 
clearResources() - Method in class org.j2ee.dao.gen.DAOGenerator
 
CLOB - Static variable in class org.j2ee.dao.gen.GenTypes
 
closeSession() - Method in interface org.j2ee.dao.DAOActionProcessor
close a started session
closeSession() - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
close a started session
closeSession() - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
close a started session
commitTransaction() - Method in interface org.j2ee.dao.DAOActionProcessor
commit a started transaction.
commitTransaction() - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
commit a started transaction.
commitTransaction() - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
commit a started transaction.
COMMON_NAME - Static variable in class org.j2ee.dao.gen.Util
 
createActionFiles(DAOGenerator, GenData, Collection, String, ClassLoader) - Method in class org.j2ee.dao.gen.Util
 
createClasspath() - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
createConnection(String, String, String) - Method in class org.j2ee.dao.gen.Util
 
createDAOAction(String, GenData, ClassLoader) - Method in class org.j2ee.dao.gen.DAOGenerator
 
createDAOAction(String, String, ClassLoader) - Method in class org.j2ee.dao.gen.DAOGenerator
 
createDAOXML(GenData) - Method in class org.j2ee.dao.gen.DAOGenerator
 
createGeneratorData(Connection, Map) - Method in class org.j2ee.dao.gen.Util
 
createTableData(Connection, String, Map, Map, Map) - Method in class org.j2ee.dao.gen.Util
 
createTableData(ResultSet, Map, Map, Map) - Method in class org.j2ee.dao.gen.Util
Create a TableData based on a ResultSet (Table), pk (primary keys), pnames (property names) and ptypes (java property types).

D

DAO_PACKAGE - Static variable in class org.j2ee.dao.gen.Util
 
DAOAction - interface org.j2ee.dao.DAOAction.
This interface is the common behavior of all actions.
DAOActionProcessor - interface org.j2ee.dao.DAOActionProcessor.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:12 $
DAOCheckConstraintFailedException - exception org.j2ee.dao.DAOCheckConstraintFailedException.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:12 $
DAOCheckConstraintFailedException(String) - Constructor for class org.j2ee.dao.DAOCheckConstraintFailedException
Constructor without cascade exception
DAOCheckConstraintFailedException(String, Throwable) - Constructor for class org.j2ee.dao.DAOCheckConstraintFailedException
Constructor with cascade exception
DAOErrorHandler - interface org.j2ee.dao.DAOErrorHandler.
List of error code that the application can manage.
DAOException - exception org.j2ee.dao.DAOException.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:12 $
DAOException(String) - Constructor for class org.j2ee.dao.DAOException
 
DAOException(String, Throwable) - Constructor for class org.j2ee.dao.DAOException
 
DAOFactory - class org.j2ee.dao.DAOFactory.
Initial Factory for the DAO Pattern It will locate daofactory.properties file in four differente way: First: Test for the system propertie: org.j2ee.dao.factory and try to open it as File Usage: java -Dorg.j2ee.dao.factory=file:/tmp/daofactory.properties Second: Test for the JNDI name: java:comp/env/daoFactoryProperty and try to open it as ResourceBoundle class loader spec Usage (Define it in your ejb-jar.xml): daoFactoryProperty java.lang.String my.pkg.daofactory Third: Test in the root classpath and try to load it using Resource Boundle semantic Usage: put daofactory.properties in the root classpath of your .jar Fourth: Test in the DAO classpath (org.j2ee.dao) and try to load it using Resource Boundle semantic Usage: put daofactory.properties in org/j2ee/dao directory of your .jar Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9 Last modified $Date: 2004/05/18 10:50:12 $
DAOFactory() - Constructor for class org.j2ee.dao.DAOFactory
 
DAOGenerator - class org.j2ee.dao.gen.DAOGenerator.
Last modified $Date: 2004/05/18 10:50:16 $
DAOGenerator() - Constructor for class org.j2ee.dao.gen.DAOGenerator
Default generator.
DAOGenerator(ResourceBundle) - Constructor for class org.j2ee.dao.gen.DAOGenerator
Create a Generator with rb configuration.
DAOGeneratorTask - class org.j2ee.dao.gen.DAOGeneratorTask.
Last modified $Date: 2004/05/18 10:50:16 $
DAOGeneratorTask() - Constructor for class org.j2ee.dao.gen.DAOGeneratorTask
 
DAOHibernateActionProcessorImpl - class org.j2ee.dao.DAOHibernateActionProcessorImpl.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:12 $
DAOHibernateActionProcessorImpl() - Constructor for class org.j2ee.dao.DAOHibernateActionProcessorImpl
 
DAOJdbcActionProcessorImpl - class org.j2ee.dao.DAOJdbcActionProcessorImpl.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:13 $
DAOJdbcActionProcessorImpl() - Constructor for class org.j2ee.dao.DAOJdbcActionProcessorImpl
 
DAONoDataFoundException - exception org.j2ee.dao.DAONoDataFoundException.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:13 $
DAONoDataFoundException(String) - Constructor for class org.j2ee.dao.DAONoDataFoundException
 
DAONoDataFoundException(String, Throwable) - Constructor for class org.j2ee.dao.DAONoDataFoundException
 
DAOParentKeyNotFoundException - exception org.j2ee.dao.DAOParentKeyNotFoundException.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:13 $
DAOParentKeyNotFoundException(String) - Constructor for class org.j2ee.dao.DAOParentKeyNotFoundException
 
DAOParentKeyNotFoundException(String, Throwable) - Constructor for class org.j2ee.dao.DAOParentKeyNotFoundException
 
DAORestrictUpdateFailedException - exception org.j2ee.dao.DAORestrictUpdateFailedException.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:13 $
DAORestrictUpdateFailedException(String) - Constructor for class org.j2ee.dao.DAORestrictUpdateFailedException
 
DAORestrictUpdateFailedException(String, Throwable) - Constructor for class org.j2ee.dao.DAORestrictUpdateFailedException
 
DAOUniqueConstraintFailedException - exception org.j2ee.dao.DAOUniqueConstraintFailedException.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:13 $
DAOUniqueConstraintFailedException(String) - Constructor for class org.j2ee.dao.DAOUniqueConstraintFailedException
 
DAOUniqueConstraintFailedException(String, Throwable) - Constructor for class org.j2ee.dao.DAOUniqueConstraintFailedException
 
DATE - Static variable in class org.j2ee.dao.gen.GenTypes
 
DB2 - Static variable in class org.j2ee.dao.errors.ErrorMapperFactory
 
DB2ErrorMapper - class org.j2ee.dao.errors.DB2ErrorMapper.
This is concrete implementation for the class AbstractErrorMapper for DB2 database provide the transalation method betwen DB2 error codes to the DAOErrorHandler error code list Last modified $Date: 2004/05/18 10:50:14 $
DB2ErrorMapper() - Constructor for class org.j2ee.dao.errors.DB2ErrorMapper
 
DBErrorConvert(int) - Method in class org.j2ee.dao.errors.AbstractErrorMapper
This do not work perfectly, see http://www.jguru.com/faq/view.jsp?EID=46397
DBErrorConvert(int) - Method in class org.j2ee.dao.errors.DB2ErrorMapper
It will resolve problem of incompatibility of the error coded returned by different Database vendors.
DBErrorConvert(int) - Method in class org.j2ee.dao.errors.HSQLErrorMapper
It will resolve problem of incompatibility of the error coded returned by different Database vendors.
DBErrorConvert(int) - Method in class org.j2ee.dao.errors.OracleErrorMapper
It will resolve problem of incompatibility of the error coded returned by different Database vendors.
DBErrorMapper(Throwable) - Method in class org.j2ee.dao.errors.AbstractErrorMapper
 
DBErrorMapper(Throwable) - Method in interface org.j2ee.dao.errors.ErrorMapper
This method will convert a list of know application error codes to the list defined into the
DDL - Static variable in interface org.j2ee.dao.JdbcDAOAction
 
DEFAULT_FACTORY_ENTRY - Static variable in class org.j2ee.dao.DAOFactory
 
default_params - Static variable in class org.j2ee.dao.gen.Main
 
DefaultDAOFactoryImpl - class org.j2ee.dao.DefaultDAOFactoryImpl.

Based on an example of book Code Notes for J2EE, Edited by GREGORY BRILL, e-ISBN 0-679-64727-9
Last modified $Date: 2004/05/18 10:50:13 $
DefaultDAOFactoryImpl() - Constructor for class org.j2ee.dao.DefaultDAOFactoryImpl
 
defaultProcessorName - Static variable in class org.j2ee.dao.DefaultDAOFactoryImpl
 
DELETE - Static variable in interface org.j2ee.dao.HibernateDAOAction
 
DOUBLE - Static variable in class org.j2ee.dao.gen.GenTypes
 
DRIVER - Static variable in class org.j2ee.dao.gen.Util
 
DTO_NAME - Static variable in class org.j2ee.dao.gen.Util
 
DTO_PACKAGE - Static variable in class org.j2ee.dao.gen.Util
 

E

ErrorMapper - interface org.j2ee.dao.errors.ErrorMapper.
Error mapper interface.
ErrorMapperFactory - class org.j2ee.dao.errors.ErrorMapperFactory.
Factory used to get a concrete ErrorMapper implementation Last modified $Date: 2004/05/18 10:50:14 $
ErrorMapperFactory() - Constructor for class org.j2ee.dao.errors.ErrorMapperFactory
 
execute() - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
execute(DAOActionProcessor) - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Execute this action using the given processor If there are exception, try to conver it with the Error Mapper and then call to Error Handler of this aciont
execute(DAOActionProcessor) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
execute(DAOActionProcessor) - Method in interface org.j2ee.dao.DAOAction
This is the mainly method of an action.
execute(DAOActionProcessor) - Method in class org.j2ee.dao.MacroDAOAction
 
executing - Variable in class org.j2ee.dao.MacroDAOAction
 

F

FACTORIES_ENTRY - Static variable in class org.j2ee.dao.DAOFactory
 
FACTORY_CLASS_SUFFIX - Static variable in class org.j2ee.dao.DAOFactory
 
factoryMap - Static variable in class org.j2ee.dao.DAOFactory
 
FIELD_JTYPE_MAP - Static variable in class org.j2ee.dao.gen.Util
 
FIELD_PROP_MAP - Static variable in class org.j2ee.dao.gen.Util
 
FieldData - class org.j2ee.dao.gen.FieldData.
Last modified $Date: 2004/05/18 10:50:16 $
FieldData() - Constructor for class org.j2ee.dao.gen.FieldData
 
FieldData(String, int, int, int, int, boolean, boolean, int, String) - Constructor for class org.j2ee.dao.gen.FieldData
 
finalize() - Method in class org.j2ee.dao.MacroDAOAction
 
FLOAT - Static variable in class org.j2ee.dao.gen.GenTypes
 

G

GenData - class org.j2ee.dao.gen.GenData.
Last modified $Date: 2004/05/18 10:50:16 $
GenData() - Constructor for class org.j2ee.dao.gen.GenData
 
GenericErrorHandler - class org.j2ee.dao.util.GenericErrorHandler.
This class is a Generic ErrorHandler setted by default by AbstractHibernateDAOAction and AbstractJdbcDAOAction as Error Handler.
GenericErrorHandler() - Constructor for class org.j2ee.dao.util.GenericErrorHandler
 
GenTypes - class org.j2ee.dao.gen.GenTypes.
Last modified $Date: 2004/05/18 10:50:17 $
GenTypes() - Constructor for class org.j2ee.dao.gen.GenTypes
 
getAction() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
getAction() - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
getAction(String) - Method in class org.j2ee.dao.DAOFactory
 
getAction(String) - Method in class org.j2ee.dao.DefaultDAOFactoryImpl
 
getActionsMap() - Method in class org.j2ee.dao.gen.DAOGenerator
 
getCause() - Method in class org.j2ee.dao.DAOException
 
getCommon_name() - Method in class org.j2ee.dao.gen.GenData
 
getConfiguration() - Static method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
 
getConnection() - Method in interface org.j2ee.dao.DAOActionProcessor
Returns the JDBC Connection associated to this processor
getConnection() - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
Provides the JDBC connection object stored into the private instance
getConnection() - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
 
getDao_package() - Method in class org.j2ee.dao.gen.GenData
 
getDAOFactory() - Static method in class org.j2ee.dao.DAOFactory
Returns a default factory
getDAOFactory(String) - Static method in class org.j2ee.dao.DAOFactory
Search in factories Map if find a key named "whichFactory", if find is succefully then compare the object instance, if is a string, then load class named in this way, otherwise the object is a Factory.
getDataTypesForOutParams() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
getDataTypesForOutParams() - Method in interface org.j2ee.dao.JdbcDAOAction
This method is called when this action is of type CALL_PROCEDURE or CALL_FUNCTION.
getDataTypesForParams() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
getDataTypesForParams() - Method in interface org.j2ee.dao.JdbcDAOAction
This method retuns the SQL Type for parameters to be setted to sql statement.
getDataTypesForParams() - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
getDto_name() - Method in class org.j2ee.dao.gen.GenData
 
getDto_package() - Method in class org.j2ee.dao.gen.GenData
 
getErrorMapper() - Method in interface org.j2ee.dao.DAOActionProcessor
Return an ErrorMapper object to translate SQLException or other kind of exception to a common error list code
getErrorMapper() - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
Return an ErrorMapper object to translate SQLException or other kind of exception to a common error list code
getErrorMapper() - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
Return an ErrorMapper object to translate SQLException or other kind of exception to a common error list code
getErrorMapper(int) - Static method in class org.j2ee.dao.errors.ErrorMapperFactory
 
getField_jtype_map() - Method in class org.j2ee.dao.gen.GenData
 
getField_prop_map() - Method in class org.j2ee.dao.gen.GenData
 
getField(String) - Method in class org.j2ee.dao.gen.TableData
 
getFilenamePattern(String) - Method in class org.j2ee.dao.gen.DAOGenerator
 
getFileNamesMap() - Method in class org.j2ee.dao.gen.DAOGenerator
 
getFirstRow() - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
getFrom() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
getHQL() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Implement this method if you are writting a HQL based Action
getHQL() - Method in interface org.j2ee.dao.HibernateDAOAction
This method define an HQL statement to be executed.
getInstance() - Static method in class org.j2ee.dao.gen.Util
 
getJavaProp() - Method in class org.j2ee.dao.gen.FieldData
 
getJavaType() - Method in class org.j2ee.dao.gen.FieldData
 
getJavaType(String) - Static method in class org.j2ee.dao.gen.GenTypes
 
getJavaTypes() - Static method in class org.j2ee.dao.gen.GenTypes
 
getJavaWrappers() - Static method in class org.j2ee.dao.gen.GenTypes
 
getList() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
getName() - Method in class org.j2ee.dao.gen.FieldData
 
getName() - Method in class org.j2ee.dao.gen.TableData
 
getNamesForParams() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
getNamesForParams() - Method in interface org.j2ee.dao.HibernateDAOAction
This method retuns the names for parameters to be setted to sql/hql statement.
getNamesForParams() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
getNumberOfRows() - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
getParameters() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
getParameters() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
getParameters() - Method in interface org.j2ee.dao.HibernateDAOAction
This method retuns the parameters to be setted to SQL/HQL statement.
getParameters() - Method in interface org.j2ee.dao.JdbcDAOAction
This method retuns the parameters to be setted to sql statement.
getParameters() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
getParameters() - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
getPk_map() - Method in class org.j2ee.dao.gen.GenData
 
getPrecision() - Method in class org.j2ee.dao.gen.FieldData
 
getPreparedStatement() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
getPreparedStatement() - Method in interface org.j2ee.dao.JdbcDAOAction
 
getPreparedStatement() - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
getPrimaryKeys(Connection, String, String, String) - Method in class org.j2ee.dao.gen.Util
 
getProcessor() - Method in class org.j2ee.dao.DAOFactory
 
getProcessor() - Method in class org.j2ee.dao.DefaultDAOFactoryImpl
Get or Create a default DAO processor (processor.class entry on daofactory.properties)
getProcessor(String) - Method in class org.j2ee.dao.DAOFactory
 
getProcessor(String) - Method in class org.j2ee.dao.DefaultDAOFactoryImpl
Get or create a named processor
getProperties() - Static method in class org.j2ee.dao.DAOFactory
 
getResourceBoundle() - Method in class org.j2ee.dao.gen.DAOGenerator
Get last ResourceBundle configuration file.
getResourceString(ResourceBundle, String) - Static method in class org.j2ee.dao.DAOFactory
 
getResourceString(ResourceBundle, String) - Method in class org.j2ee.dao.gen.Util
 
getReturnAliasForSqlQuery() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Alias used into the SQL query with the sintax {alias}
getReturnAliasForSqlQuery() - Method in interface org.j2ee.dao.HibernateDAOAction
This method is called when this action is of type SQL_QUERY.
getReturnAliasForSqlQuery() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
getReturnClassForSqlQuery() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Hibernate requieres a class for every object returned by an SQL query
getReturnClassForSqlQuery() - Method in interface org.j2ee.dao.HibernateDAOAction
This method is called when this action is of type SQL_QUERY.
getReturnClassForSqlQuery() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
getRsetProp() - Static method in class org.j2ee.dao.gen.GenTypes
 
getScale() - Method in class org.j2ee.dao.gen.FieldData
 
getSession() - Method in interface org.j2ee.dao.DAOActionProcessor
get/start a DAO Session object to be used for external controled action.
getSession() - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
get/start an Hibernate Session object to be used for external controled action.
getSession() - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
get/start a DAO Session object to be used for external controled action.
getSessionFactory() - Static method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
 
getSize() - Method in class org.j2ee.dao.gen.FieldData
 
getSQL() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Implement this method if you are writting a SQL based Action
getSQL() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
getSQL() - Method in interface org.j2ee.dao.HibernateDAOAction
This method define an SQL statement to be executed.
getSQL() - Method in interface org.j2ee.dao.JdbcDAOAction
This method define the sql statement to be executed.
getSQL() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
This method must return a valid SQL query, it will receive all the named parameters defined by the action object plus two aditionals parameters named firstRow and lastRow representing the values for the window to be select.
getSQL() - Method in class org.j2ee.dao.util.HibernateDB2NTopWrapperAction
 
getSQL() - Method in class org.j2ee.dao.util.HibernateOracleNTopWrapperAction
 
getSQL() - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
getSqlType() - Method in class org.j2ee.dao.gen.FieldData
 
getSqlTypes() - Static method in class org.j2ee.dao.gen.GenTypes
 
getStmtType() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
getter for private attribute
getStmtType() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
getStmtType() - Method in interface org.j2ee.dao.HibernateDAOAction
Return of statemnt's type.
getStmtType() - Method in interface org.j2ee.dao.JdbcDAOAction
Return of statemnt's type.
getTableData() - Method in class org.j2ee.dao.gen.GenData
 
getTo() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
getTO() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
REDEFINE THIS METHOD ON EVERY SUBCLASS The transfer object used or setted by the action.
getTO() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
REDEFINE THIS METHOD ON EVERY SUBCLASS The transfer object used or setted by the action.
getTO() - Method in interface org.j2ee.dao.DAOAction
The transfer object used or setted by the action.
getTO() - Method in class org.j2ee.dao.MacroDAOAction
The transfer object used or setted by the action.
getTransformerFactory(ClassLoader) - Method in class org.j2ee.dao.gen.DAOGenerator
Get a TransformerFactory, if this is null, then create a new one.
GROUPS_ENTRY - Static variable in class org.j2ee.dao.DAOFactory
 

H

handleError(DAOAction, DAOActionProcessor, Throwable, int) - Method in interface org.j2ee.dao.DAOErrorHandler
 
handleError(DAOAction, DAOActionProcessor, Throwable, int) - Method in class org.j2ee.dao.util.GenericErrorHandler
 
handleResult() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Called by the Processor after an Hibernate succefull save,update,delete operation
handleResult() - Method in interface org.j2ee.dao.HibernateDAOAction
Handle the results of update statements.
If the statement is of type SAVE/UPDATE/DELETE (insert, update or delete), then when the execution of the statement finalize and no exception occurs, this method is call for handle the results.
handleResult(Object) - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Called by the Processor after an Hibernate succefull load operation
handleResult(Object) - Method in interface org.j2ee.dao.HibernateDAOAction
Handle the results of load statements.
If the statement is of type LOAD (load), then when the execution of the statement finalize and no exception occurs, this method is call for handle the results.
handleResults(CallableStatement) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
handleResults(CallableStatement) - Method in interface org.j2ee.dao.JdbcDAOAction
Handle the results of call statements.
If the statement is of type CALL_PROCEDURE or CALL_FUNCTION, then when the execution of the statement finalize and no exception occurs, this method is call for handle the results.
handleResults(int) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
handleResults(int) - Method in interface org.j2ee.dao.JdbcDAOAction
Handle the results of update statements.
If the statement is of type UPDATE (insert, update or delete), then when the execution of the statement finalize and no exception occurs, this method is call for handle the results.
handleResults(List) - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Called by the Processor after an SQL or HQL succefull operation
handleResults(List) - Method in interface org.j2ee.dao.HibernateDAOAction
Handle the results of query statements.
If the statement is of type SQL_QUERY,HQL_QUERY (select), then when the execution of the statement finalize and no exception occurs, this method is call for handle the results.
handleResults(List) - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
handleResults(ResultSet) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
handleResults(ResultSet) - Method in interface org.j2ee.dao.JdbcDAOAction
Handle the results of query statements.
If the statement is of type QUERY (select), then when the execution of the statement finalize and no exception occurs, this method is call for handle the results.
handleResults(ResultSet) - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
HibernateDAOAction - interface org.j2ee.dao.HibernateDAOAction.
Base interface of real actions.
HibernateDB2NTopWrapperAction - class org.j2ee.dao.util.HibernateDB2NTopWrapperAction.
Last modified $Date: 2004/05/18 10:50:17 $
HibernateDB2NTopWrapperAction() - Constructor for class org.j2ee.dao.util.HibernateDB2NTopWrapperAction
 
HibernateDB2NTopWrapperAction(int, int) - Constructor for class org.j2ee.dao.util.HibernateDB2NTopWrapperAction
 
HibernateOracleNTopWrapperAction - class org.j2ee.dao.util.HibernateOracleNTopWrapperAction.
Last modified $Date: 2004/05/18 10:50:17 $
HibernateOracleNTopWrapperAction() - Constructor for class org.j2ee.dao.util.HibernateOracleNTopWrapperAction
 
HibernateOracleNTopWrapperAction(int, int) - Constructor for class org.j2ee.dao.util.HibernateOracleNTopWrapperAction
 
HQL_QUERY - Static variable in interface org.j2ee.dao.HibernateDAOAction
 
HSQL - Static variable in class org.j2ee.dao.errors.ErrorMapperFactory
 
HSQLErrorMapper - class org.j2ee.dao.errors.HSQLErrorMapper.
This is concrete implementation for the class AbstractErrorMapper for HSQL database provide the transalation method betwen HSQL error codes to the DAOErrorHandler error code list
HSQLErrorMapper() - Constructor for class org.j2ee.dao.errors.HSQLErrorMapper
 

I

initialize() - Method in class org.j2ee.dao.MacroDAOAction
 
inizialize(String) - Method in class org.j2ee.dao.DAOFactory
 
inizialize(String) - Method in class org.j2ee.dao.DefaultDAOFactoryImpl
Inicialize this factory, named by factoryName name.
INT - Static variable in class org.j2ee.dao.gen.GenTypes
 
isCaching() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
isCaching() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
isCaching() - Method in interface org.j2ee.dao.HibernateDAOAction
 
isCaching() - Method in interface org.j2ee.dao.JdbcDAOAction
 
isCaching() - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
isCall() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
isCall() - Method in interface org.j2ee.dao.JdbcDAOAction
Returs true if this action is a CALL statement
isDelete() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
isDelete() - Method in interface org.j2ee.dao.HibernateDAOAction
Returs true if this action is an DELETE statement
isHqlQuery() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
isHqlQuery() - Method in interface org.j2ee.dao.HibernateDAOAction
Returs true if this action is a HQL_QUERY statement
isLoad() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
isLoad() - Method in interface org.j2ee.dao.HibernateDAOAction
Returs true if this action is an LOAD statement
isLoaded() - Method in class org.j2ee.dao.gen.DAOGenerator
 
isNullable() - Method in class org.j2ee.dao.gen.FieldData
 
isPk() - Method in class org.j2ee.dao.gen.FieldData
 
isQuery() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
isQuery() - Method in interface org.j2ee.dao.JdbcDAOAction
Returs true if this action is a QUERY statement
isSave() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
isSave() - Method in interface org.j2ee.dao.HibernateDAOAction
Returs true if this action is an SAVE statement
isSqlQuery() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
isSqlQuery() - Method in interface org.j2ee.dao.HibernateDAOAction
Returs true if this action is a SQL_QUERY statement
isUpdate() - Method in class org.j2ee.dao.AbstractHibernateDAOAction
 
isUpdate() - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
isUpdate() - Method in interface org.j2ee.dao.HibernateDAOAction
Returs true if this action is an UPDATE statement
isUpdate() - Method in interface org.j2ee.dao.JdbcDAOAction
Returs true if this action is an UPDATE statement
iterator() - Method in class org.j2ee.dao.gen.TableData
 

J

JAVA_TYPES - Static variable in class org.j2ee.dao.gen.GenTypes
BigDecimal=java.math, String=java.lang, Date=java.sql, Time=java.sql, Timestamp=java.sql Blob=java.sql, Clob=java.sql, Array=java.sql, Ref=java.sql, Struct=java.sql
JAVA_WRAPPERS - Static variable in class org.j2ee.dao.gen.GenTypes
 
javaTypesMap - Static variable in class org.j2ee.dao.gen.GenTypes
 
JdbcDAOAction - interface org.j2ee.dao.JdbcDAOAction.
Base interface of real actions.
JdbcOracleNTopQueryWrapperAction - class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction.
Action Wrapper that implements the N-Top Query Last modified $Date: 2004/05/18 10:50:18 $
JdbcOracleNTopQueryWrapperAction() - Constructor for class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
JdbcOracleNTopQueryWrapperAction(JdbcDAOAction) - Constructor for class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 

L

LOAD - Static variable in interface org.j2ee.dao.HibernateDAOAction
 
loadJDBCDriver(String) - Method in class org.j2ee.dao.gen.Util
Load and registed a JDBC Driver.
loadResources() - Method in class org.j2ee.dao.gen.DAOGenerator
 
LONG - Static variable in class org.j2ee.dao.gen.GenTypes
 

M

MacroDAOAction - class org.j2ee.dao.MacroDAOAction.
Last modified $Date: 2004/05/18 10:50:13 $
MacroDAOAction() - Constructor for class org.j2ee.dao.MacroDAOAction
 
Main - class org.j2ee.dao.gen.Main.
Last modified $Date: 2004/05/18 10:50:17 $
Main() - Constructor for class org.j2ee.dao.gen.Main
 
main(String[]) - Static method in class org.j2ee.dao.gen.Main
 
mapRow(ResultSet, Object) - Method in interface org.j2ee.dao.util.ResultSetRowMapper
Retrieves the columns of a row of data using ResultSet.getter methods and stores them in instance variables of item.

N

NO_DATA_FOUND - Static variable in interface org.j2ee.dao.DAOErrorHandler
Load operation fail (Hibernate/Toplink)
NO_OUT_PARAM - Static variable in interface org.j2ee.dao.JdbcDAOAction
 
noDataFound(DAOAction, DAOActionProcessor, Throwable) - Method in class org.j2ee.dao.util.GenericErrorHandler
raised when Hibernate or Toplink methed Load fail (Not Applicable for JDBC)

O

OK - Static variable in interface org.j2ee.dao.DAOErrorHandler
No, errors
ORACLE - Static variable in class org.j2ee.dao.errors.ErrorMapperFactory
 
OracleErrorMapper - class org.j2ee.dao.errors.OracleErrorMapper.
This is concrete implementation for the class AbstractErrorMapper for Oracle database provide the transalation method betwen Oracle error codes to the DAOErrorHandler error code list Last modified $Date: 2004/05/18 10:50:14 $
OracleErrorMapper() - Constructor for class org.j2ee.dao.errors.OracleErrorMapper
 
org.j2ee.dao - package org.j2ee.dao
 
org.j2ee.dao.errors - package org.j2ee.dao.errors
 
org.j2ee.dao.gen - package org.j2ee.dao.gen
 
org.j2ee.dao.util - package org.j2ee.dao.util
 

P

PARENT_KEY_NOT_FOUND - Static variable in interface org.j2ee.dao.DAOErrorHandler
Parent key not found on some columns
parentKeyNotFound(DAOAction, DAOActionProcessor, Throwable) - Method in class org.j2ee.dao.util.GenericErrorHandler
raised when the parent key not found
PASSWORD - Static variable in class org.j2ee.dao.gen.Util
 
PK - Static variable in class org.j2ee.dao.gen.Util
 
posExecute(int, DAOAction) - Method in class org.j2ee.dao.MacroDAOAction
 
preExecute(int, DAOAction) - Method in class org.j2ee.dao.MacroDAOAction
 
print() - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
process(DAOAction) - Method in interface org.j2ee.dao.DAOActionProcessor
 
process(DAOAction) - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
execute a command action.
process(DAOAction) - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
 

Q

QUERY - Static variable in interface org.j2ee.dao.JdbcDAOAction
 

R

rb - Static variable in class org.j2ee.dao.DAOFactory
 
REF - Static variable in class org.j2ee.dao.gen.GenTypes
 
remove(DAOAction) - Method in class org.j2ee.dao.MacroDAOAction
 
replaceAll(String, String, String) - Method in class org.j2ee.dao.gen.Util
 
RESTRICT_UPDATE_DELETE - Static variable in interface org.j2ee.dao.DAOErrorHandler
Cannot delete or update due to restrict delete/update constraint failed
restrictUpdateDelete(DAOAction, DAOActionProcessor, Throwable) - Method in class org.j2ee.dao.util.GenericErrorHandler
raised when you try to delete or update and the foreign key fail.
ResultSetRowMapper - interface org.j2ee.dao.util.ResultSetRowMapper.
ResultSetRowMapper interface maps columns of a row of data to instance variables of an Object that represents an item in a search result set.
rollbackTransaction() - Method in interface org.j2ee.dao.DAOActionProcessor
rollback a started transaction.
rollbackTransaction() - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
rollback a started transaction.
rollbackTransaction() - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
rollback a started transaction.
RSET_PROP - Static variable in class org.j2ee.dao.gen.GenTypes
 

S

SAVE - Static variable in interface org.j2ee.dao.HibernateDAOAction
 
SCHEMA - Static variable in class org.j2ee.dao.gen.Util
 
setAction(HibernateDAOAction) - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
setAction(JdbcDAOAction) - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
setActions(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setActionsMap(Map) - Method in class org.j2ee.dao.gen.DAOGenerator
 
setBase_path(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setCaching(boolean) - Method in class org.j2ee.dao.AbstractHibernateDAOAction
Defines if the HQL or SQL query should be cached by the processor
setCaching(boolean) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
setCaching(boolean) - Method in interface org.j2ee.dao.HibernateDAOAction
 
setCaching(boolean) - Method in interface org.j2ee.dao.JdbcDAOAction
 
setCaching(boolean) - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
setClasspath(Path) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setClasspathRef(Reference) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setCommon_name(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setCommon_name(String) - Method in class org.j2ee.dao.gen.GenData
 
setConnection(Connection) - Method in interface org.j2ee.dao.DAOActionProcessor
Set a JDBC Connection to this processor
setConnection(Connection) - Method in class org.j2ee.dao.DAOHibernateActionProcessorImpl
Provide an external JDBC Connection to be used by Hibernate
setConnection(Connection) - Method in class org.j2ee.dao.DAOJdbcActionProcessorImpl
 
setDao_package(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setDao_package(String) - Method in class org.j2ee.dao.gen.GenData
 
setDriver(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setDto_name(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setDto_name(String) - Method in class org.j2ee.dao.gen.GenData
 
setDto_package(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setDto_package(String) - Method in class org.j2ee.dao.gen.GenData
 
setErrorHandler(DAOErrorHandler) - Method in class org.j2ee.dao.AbstractHibernateDAOAction
This method allows to the action to set a class which manage application errors such as integrity constraint violated.
setErrorHandler(DAOErrorHandler) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
This method allows to the action to set a class which manage application errors such as integrity constraint violated.
setErrorHandler(DAOErrorHandler) - Method in interface org.j2ee.dao.DAOAction
This method allows to the action to set a class which manage application errors such as integrity constraint violated.
setErrorHandler(DAOErrorHandler) - Method in class org.j2ee.dao.MacroDAOAction
This method allows to the action to set a class which manage application errors such as integrity constraint violated.
setField_jtype_map(Map) - Method in class org.j2ee.dao.gen.GenData
 
setField_jtype_map(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setField_prop_map(Map) - Method in class org.j2ee.dao.gen.GenData
 
setField_prop_map(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setFileNamesMap(Map) - Method in class org.j2ee.dao.gen.DAOGenerator
 
setFirstRow(long) - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
setFrom(int) - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
setJavaProp(String) - Method in class org.j2ee.dao.gen.FieldData
 
setJavaType(int) - Method in class org.j2ee.dao.gen.FieldData
 
setName(String) - Method in class org.j2ee.dao.gen.FieldData
 
setName(String) - Method in class org.j2ee.dao.gen.TableData
 
setNullable(boolean) - Method in class org.j2ee.dao.gen.FieldData
 
setNumberOfRows(int) - Method in class org.j2ee.dao.util.JdbcOracleNTopQueryWrapperAction
 
setPassword(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setPk_map(Map) - Method in class org.j2ee.dao.gen.GenData
 
setPk(boolean) - Method in class org.j2ee.dao.gen.FieldData
 
setPk(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setPrecision(int) - Method in class org.j2ee.dao.gen.FieldData
 
setRdbms(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setResourceBoundle(ResourceBundle) - Method in class org.j2ee.dao.gen.DAOGenerator
Set ResourceBundle and add her configuration to this generator (don clear generator state, this method generate an aditive configaration).
setScale(int) - Method in class org.j2ee.dao.gen.FieldData
 
setSchema(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setSize(int) - Method in class org.j2ee.dao.gen.FieldData
 
setSqlType(int) - Method in class org.j2ee.dao.gen.FieldData
 
setStmtType(int) - Method in class org.j2ee.dao.AbstractHibernateDAOAction
setter method for private attribute
setStmtType(int) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
 
setStmtType(int) - Method in interface org.j2ee.dao.HibernateDAOAction
Set of statemnt's type.
setStmtType(int) - Method in interface org.j2ee.dao.JdbcDAOAction
Set of statemnt's type.
setTable(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setTableData(TableData) - Method in class org.j2ee.dao.gen.GenData
 
setTo(int) - Method in class org.j2ee.dao.util.AbstractPageByPageAction
 
setTO(Object) - Method in class org.j2ee.dao.AbstractHibernateDAOAction
REDEFINE THIS METHOD ON EVERY SUBCLASS Set the private attribute, the transfer object.
setTO(Object) - Method in class org.j2ee.dao.AbstractJdbcDAOAction
REDEFINE THIS METHOD ON EVERY SUBCLASS Set the private attribute, the transfer object.
setTO(Object) - Method in interface org.j2ee.dao.DAOAction
Set the private attribute, the transfer object.
setTO(Object) - Method in class org.j2ee.dao.MacroDAOAction
Set the private attribute, the transfer object.
setTransformerFactory(TransformerFactory) - Method in class org.j2ee.dao.gen.DAOGenerator
Set a new TransformerFactory
setUrl(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setUserid(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
setVersion(String) - Method in class org.j2ee.dao.gen.DAOGeneratorTask
 
SHORT - Static variable in class org.j2ee.dao.gen.GenTypes
 
split(String, String) - Method in class org.j2ee.dao.gen.Util
 
splitArgs(String[]) - Method in class org.j2ee.dao.gen.Util
 
splitArgs(String[], Map) - Method in class org.j2ee.dao.gen.Util
 
splitCSV(String) - Method in class org.j2ee.dao.gen.Util
 
SQL_QUERY - Static variable in interface org.j2ee.dao.HibernateDAOAction
 
SQL_TYPES - Static variable in class org.j2ee.dao.gen.GenTypes
 
sqlTypeToString(int) - Static method in class org.j2ee.dao.gen.GenTypes
 
STRING - Static variable in class org.j2ee.dao.gen.GenTypes
 
STRUCT - Static variable in class org.j2ee.dao.gen.GenTypes
 

T

TABLE - Static variable in class org.j2ee.dao.gen.Util
 
TableData - class org.j2ee.dao.gen.TableData.
Last modified $Date: 2004/05/18 10:50:17 $
TableData() - Constructor for class org.j2ee.dao.gen.TableData
 
TIME - Static variable in class org.j2ee.dao.gen.GenTypes
 
TIMESTAMP - Static variable in class org.j2ee.dao.gen.GenTypes
 
tokenize(String) - Static method in class org.j2ee.dao.DAOFactory
Take the given string and chop it up into a series of strings on whitespace boundries.
tokenize(String) - Method in class org.j2ee.dao.gen.Util
Take the given string and chop it up into a series of strings on whitespace boundries.

U

UNIQUE_CONSTRAINT_FAILED - Static variable in interface org.j2ee.dao.DAOErrorHandler
Primary key or Unique key constraint failed
uniqueConstraintFailed(DAOAction, DAOActionProcessor, Throwable) - Method in class org.j2ee.dao.util.GenericErrorHandler
raised when some unique constraint fail
UNKNOWN_ERROR_CODE - Static variable in interface org.j2ee.dao.DAOErrorHandler
We don't known this error code
UPDATE - Static variable in interface org.j2ee.dao.HibernateDAOAction
 
UPDATE - Static variable in interface org.j2ee.dao.JdbcDAOAction
 
URL - Static variable in class org.j2ee.dao.gen.Util
 
USERID - Static variable in class org.j2ee.dao.gen.Util
 
Util - class org.j2ee.dao.gen.Util.
Last modified $Date: 2004/05/18 10:50:17 $
Util() - Constructor for class org.j2ee.dao.gen.Util
 

X

XSL_ACTION_SUFFIX - Static variable in class org.j2ee.dao.gen.DAOGenerator
 
XSL_FNAME_SUFFIX - Static variable in class org.j2ee.dao.gen.DAOGenerator
 

A B C D E F G H I J L M N O P Q R S T U X

Copyright © 2004 DAO Action Patterm. All Rights Reserved.