Uses of Class
org.castor.ddlgen.DDLGenConfiguration

Packages that use DDLGenConfiguration
org.castor.ddlgen This package contains functional classes, exceptions and Main class for DDL generator. 
org.castor.ddlgen.engine.db2 This package contains final classes to create DDL for DB2. 
org.castor.ddlgen.engine.derby This package contains final classes to create DDL for Derby. 
org.castor.ddlgen.engine.hsql This package contains final classes to create DDL for Hsql. 
org.castor.ddlgen.engine.mssql This package contains final classes to create DDL for Microsoft SQL Server. 
org.castor.ddlgen.engine.mysql This package contains final classes to create DDL for MySQL. 
org.castor.ddlgen.engine.oracle This package contains final classes to create DDL for Oracle. 
org.castor.ddlgen.engine.pointbase This package contains final classes to create DDL for PointBase. 
org.castor.ddlgen.engine.postgresql This package contains final classes to create DDL for PostgreSQL. 
org.castor.ddlgen.engine.sapdb This package contains final classes to create DDL for SapDB. 
org.castor.ddlgen.engine.sybase This package contains final classes to create DDL for Sybase. 
org.castor.ddlgen.schemaobject This package contains SchemaObject's for ddl generation including Table, Field, KeyGenerator, Index, Schema,ForeignKey and PrimaryKey. 
org.castor.ddlgen.typeinfo This package contains various type definitions which implement the TypeInfo interface. 
 

Uses of DDLGenConfiguration in org.castor.ddlgen
 

Methods in org.castor.ddlgen that return DDLGenConfiguration
 DDLGenConfiguration AbstractGenerator.getConfiguration()
          Get configuration of generator.
 

Methods in org.castor.ddlgen with parameters of type DDLGenConfiguration
protected abstract  void AbstractTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen with parameters of type DDLGenConfiguration
AbstractGenerator(DDLGenConfiguration configuration)
          Constructor for AbstractGenerator.
AbstractTypeMapper(DDLGenConfiguration conf)
          Construct an abstract TypeMapper using given configuration to get default parameters for parameterized types.
GeneratorRegistry(DDLGenConfiguration config)
          Construct an instance of each generator specified in given configuration.
KeyGeneratorRegistry(DDLGenConfiguration config)
          Construct an instance of each key generator factory specified in given configuration.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.db2
 

Methods in org.castor.ddlgen.engine.db2 with parameters of type DDLGenConfiguration
protected  void Db2TypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.db2 with parameters of type DDLGenConfiguration
Db2Generator(DDLGenConfiguration configuration)
          Constructor for Db2Generator.
Db2TypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for DB2 database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.derby
 

Methods in org.castor.ddlgen.engine.derby with parameters of type DDLGenConfiguration
protected  void DerbyTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.derby with parameters of type DDLGenConfiguration
DerbyGenerator(DDLGenConfiguration configuration)
          Constructor for DerbyGenerator.
DerbyTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for Derby database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.hsql
 

Methods in org.castor.ddlgen.engine.hsql with parameters of type DDLGenConfiguration
protected  void HsqlTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.hsql with parameters of type DDLGenConfiguration
HsqlGenerator(DDLGenConfiguration configuration)
          Constructor for HsqlGenerators.
HsqlTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for MySQL database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.mssql
 

Methods in org.castor.ddlgen.engine.mssql with parameters of type DDLGenConfiguration
protected  void MssqlTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.mssql with parameters of type DDLGenConfiguration
MssqlGenerator(DDLGenConfiguration configuration)
          Constructor for MssqlGenerator.
MssqlTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for Oracle database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.mysql
 

Methods in org.castor.ddlgen.engine.mysql with parameters of type DDLGenConfiguration
protected  void MysqlTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.mysql with parameters of type DDLGenConfiguration
MysqlGenerator(DDLGenConfiguration configuration)
          Constructor for MysqlGenerator.
MysqlTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for MySQL database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.oracle
 

Methods in org.castor.ddlgen.engine.oracle with parameters of type DDLGenConfiguration
protected  void OracleTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.oracle with parameters of type DDLGenConfiguration
OracleGenerator(DDLGenConfiguration configuration)
          Constructor for OracleGenerator.
OracleTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for Oracle database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.pointbase
 

Methods in org.castor.ddlgen.engine.pointbase with parameters of type DDLGenConfiguration
protected  void PointBaseTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.pointbase with parameters of type DDLGenConfiguration
PointBaseGenerator(DDLGenConfiguration configuration)
          Constructor for PointBaseGenerator.
PointBaseTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for PointBase database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.postgresql
 

Methods in org.castor.ddlgen.engine.postgresql with parameters of type DDLGenConfiguration
protected  void PostgresqlTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.postgresql with parameters of type DDLGenConfiguration
PostgresqlGenerator(DDLGenConfiguration configuration)
          Constructor for PostgresqlGenerator.
PostgresqlTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for MySQL database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.sapdb
 

Methods in org.castor.ddlgen.engine.sapdb with parameters of type DDLGenConfiguration
protected  void SapdbTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.sapdb with parameters of type DDLGenConfiguration
SapdbGenerator(DDLGenConfiguration configuration)
          Constructor for SapdbGenerator.
SapdbTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for Sapdb database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.engine.sybase
 

Methods in org.castor.ddlgen.engine.sybase with parameters of type DDLGenConfiguration
protected  void SybaseTypeMapper.initialize(DDLGenConfiguration conf)
          Initialize map of known types using given configuration to get default parameters for parameterized types.
 

Constructors in org.castor.ddlgen.engine.sybase with parameters of type DDLGenConfiguration
SybaseGenerator(DDLGenConfiguration configuration)
          Constructor for SybaseGenerator.
SybaseTypeMapper(DDLGenConfiguration conf)
          Construct a TypeMapper for Sybase database using given configuration to get default parameters for parameterized types.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.schemaobject
 

Methods in org.castor.ddlgen.schemaobject that return DDLGenConfiguration
 DDLGenConfiguration SchemaObject.getConfiguration()
          Get configuration of the schema object.
 DDLGenConfiguration AbstractSchemaObject.getConfiguration()
          Get configuration of the schema object.
 

Methods in org.castor.ddlgen.schemaobject with parameters of type DDLGenConfiguration
 void SchemaObject.setConfiguration(DDLGenConfiguration config)
          Set configuration of the schema object.
 void AbstractSchemaObject.setConfiguration(DDLGenConfiguration config)
          Set configuration of the schema object.
 

Uses of DDLGenConfiguration in org.castor.ddlgen.typeinfo
 

Constructors in org.castor.ddlgen.typeinfo with parameters of type DDLGenConfiguration
LobType(String jdbcType, String sqlType, DDLGenConfiguration conf)
          Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
OptionalLengthType(String jdbcType, String sqlType, DDLGenConfiguration conf)
          Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
OptionalLengthType(String jdbcType, String sqlType, String postfix, DDLGenConfiguration conf)
          Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
OptionalPrecisionDecimalsType(String jdbcType, String sqlType, DDLGenConfiguration conf)
          Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
OptionalPrecisionType(String jdbcType, String sqlType, DDLGenConfiguration conf)
          Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
RequiredLengthType(String jdbcType, String sqlType, DDLGenConfiguration conf)
          Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
RequiredLengthType(String jdbcType, String sqlType, String postfix, DDLGenConfiguration conf)
          Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
RequiredPrecisionType(String jdbcType, String sqlType, DDLGenConfiguration conf)
          Construct a new TypeInfo instance with given JDBC type, SQL type and Configuration.
 



Copyright © 2011. All Rights Reserved.