Java Doc for SQLModelObjectFactoryImpl.java in  » IDE-Netbeans » etl.project » org » netbeans » modules » sql » framework » model » impl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Netbeans » etl.project » org.netbeans.modules.sql.framework.model.impl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.modules.sql.framework.model.SQLModelObjectFactory
      org.netbeans.modules.sql.framework.model.impl.SQLModelObjectFactoryImpl

SQLModelObjectFactoryImpl
public class SQLModelObjectFactoryImpl extends SQLModelObjectFactory (Code)
Object factory
author:
   Ritesh Adval
version:
   $Revision$



Constructor Summary
public  SQLModelObjectFactoryImpl()
    

Method Summary
public  ColumnRefcreateColumnRef()
    
public  ColumnRefcreateColumnRef(SQLDBColumn column)
    
public  SQLDBConnectionDefinitioncreateDBConnectionDefinition()
    
public  SQLDBConnectionDefinitioncreateDBConnectionDefinition(DBConnectionDefinition conf)
    
public  SQLDBConnectionDefinitioncreateDBConnectionDefinition(Element element)
    
public  SQLDBConnectionDefinitioncreateDBConnectionDefinition(String name, String dbType, String driverClass, String url, String user, String password, String description)
    
public  SQLDBModelcreateDBModel(int type)
    
public  SQLDBModelcreateDBModel(DatabaseModel src, int modelType, SQLFrameworkParentObject sqlParent)
    
public  SQLGroupBycreateGroupBy()
    
public  SQLGroupBycreateGroupBy(List columns, Object parent)
    
public  SQLFiltercreateLeftUnarySQLFilter()
    
public  SQLFiltercreateRightUnarySQLFilter()
    
public  RuntimeDatabaseModelcreateRuntimeDatabaseModel()
    
public  RuntimeInputcreateRuntimeInput()
    
public  RuntimeInputcreateRuntimeInput(RuntimeInput rinput)
    
public  RuntimeOutputcreateRuntimeOutput()
    
public  RuntimeOutputcreateRuntimeOutput(RuntimeOutput routput)
    
public  SQLConditioncreateSQLCondition(String conditionName)
    
public  SQLDefinitioncreateSQLDefinition()
    
public  SQLDefinitioncreateSQLDefinition(Element element)
    
public  SQLDefinitioncreateSQLDefinition(Element element, SQLFrameworkParentObject parent)
    
public  SQLDefinitioncreateSQLDefinition(String defName)
    
public  SQLFiltercreateSQLFilter()
    
public  SQLFiltercreateSQLFilter(Element element)
    
public  SQLJoinOperatorcreateSQLJoinOperator()
    
public  SQLJoinTablecreateSQLJoinTable(SourceTable source)
    
public  SQLJoinViewcreateSQLJoinView()
    
public  SQLLiteralcreateSQLLiteral(String name, String value, int jdbcType)
    
public  SQLPredicatecreateSQLPredicate()
    
public  SourceColumncreateSourceColumn(DBColumn src)
    
public  SourceColumncreateSourceColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isNullable)
    
public  SourceColumncreateSourceColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isPrimaryKey, boolean isForeignKey, boolean isIndexed, boolean isNullable)
    
public  SourceTablecreateSourceTable(DBTable source)
    
public  SourceTablecreateSourceTable(String name, String schema, String catalog)
    
public  TargetColumncreateTargetColumn(DBColumn src)
    
public  TargetColumncreateTargetColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isNullable)
    
public  TargetColumncreateTargetColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isPrimaryKey, boolean isForeignKey, boolean isIndexed, boolean isNullable)
    
public  TargetTablecreateTargetTable(DBTable source)
    
public  TargetTablecreateTargetTable(String name, String schema, String catalog)
    
public  ValidationInfocreateValidationInfo(Object obj, String description, int vType)
    
public  VisibleSQLLiteralcreateVisibleSQLLiteral(String name, String value, int jdbcType)
    
public  VisibleSQLPredicatecreateVisibleSQLPredicate()
    


Constructor Detail
SQLModelObjectFactoryImpl
public SQLModelObjectFactoryImpl()(Code)




Method Detail
createColumnRef
public ColumnRef createColumnRef()(Code)



createColumnRef
public ColumnRef createColumnRef(SQLDBColumn column)(Code)



createDBConnectionDefinition
public SQLDBConnectionDefinition createDBConnectionDefinition()(Code)



createDBConnectionDefinition
public SQLDBConnectionDefinition createDBConnectionDefinition(DBConnectionDefinition conf)(Code)



createDBConnectionDefinition
public SQLDBConnectionDefinition createDBConnectionDefinition(Element element) throws BaseException(Code)



createDBConnectionDefinition
public SQLDBConnectionDefinition createDBConnectionDefinition(String name, String dbType, String driverClass, String url, String user, String password, String description)(Code)



createDBModel
public SQLDBModel createDBModel(int type)(Code)



createDBModel
public SQLDBModel createDBModel(DatabaseModel src, int modelType, SQLFrameworkParentObject sqlParent)(Code)



createGroupBy
public SQLGroupBy createGroupBy()(Code)



createGroupBy
public SQLGroupBy createGroupBy(List columns, Object parent)(Code)



createLeftUnarySQLFilter
public SQLFilter createLeftUnarySQLFilter()(Code)



createRightUnarySQLFilter
public SQLFilter createRightUnarySQLFilter()(Code)



createRuntimeDatabaseModel
public RuntimeDatabaseModel createRuntimeDatabaseModel()(Code)



createRuntimeInput
public RuntimeInput createRuntimeInput()(Code)



createRuntimeInput
public RuntimeInput createRuntimeInput(RuntimeInput rinput)(Code)



createRuntimeOutput
public RuntimeOutput createRuntimeOutput()(Code)



createRuntimeOutput
public RuntimeOutput createRuntimeOutput(RuntimeOutput routput)(Code)



createSQLCondition
public SQLCondition createSQLCondition(String conditionName)(Code)



createSQLDefinition
public SQLDefinition createSQLDefinition()(Code)



createSQLDefinition
public SQLDefinition createSQLDefinition(Element element) throws BaseException(Code)



createSQLDefinition
public SQLDefinition createSQLDefinition(Element element, SQLFrameworkParentObject parent) throws BaseException(Code)



createSQLDefinition
public SQLDefinition createSQLDefinition(String defName)(Code)



createSQLFilter
public SQLFilter createSQLFilter()(Code)



createSQLFilter
public SQLFilter createSQLFilter(Element element) throws BaseException(Code)



createSQLJoinOperator
public SQLJoinOperator createSQLJoinOperator()(Code)



createSQLJoinTable
public SQLJoinTable createSQLJoinTable(SourceTable source)(Code)



createSQLJoinView
public SQLJoinView createSQLJoinView()(Code)



createSQLLiteral
public SQLLiteral createSQLLiteral(String name, String value, int jdbcType) throws BaseException(Code)



createSQLPredicate
public SQLPredicate createSQLPredicate()(Code)



createSourceColumn
public SourceColumn createSourceColumn(DBColumn src)(Code)



createSourceColumn
public SourceColumn createSourceColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isNullable)(Code)



createSourceColumn
public SourceColumn createSourceColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isPrimaryKey, boolean isForeignKey, boolean isIndexed, boolean isNullable)(Code)



createSourceTable
public SourceTable createSourceTable(DBTable source)(Code)



createSourceTable
public SourceTable createSourceTable(String name, String schema, String catalog)(Code)



createTargetColumn
public TargetColumn createTargetColumn(DBColumn src)(Code)



createTargetColumn
public TargetColumn createTargetColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isNullable)(Code)



createTargetColumn
public TargetColumn createTargetColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isPrimaryKey, boolean isForeignKey, boolean isIndexed, boolean isNullable)(Code)



createTargetTable
public TargetTable createTargetTable(DBTable source)(Code)



createTargetTable
public TargetTable createTargetTable(String name, String schema, String catalog)(Code)



createValidationInfo
public ValidationInfo createValidationInfo(Object obj, String description, int vType)(Code)



createVisibleSQLLiteral
public VisibleSQLLiteral createVisibleSQLLiteral(String name, String value, int jdbcType) throws BaseException(Code)



createVisibleSQLPredicate
public VisibleSQLPredicate createVisibleSQLPredicate()(Code)



Methods inherited from org.netbeans.modules.sql.framework.model.SQLModelObjectFactory
abstract public ColumnRef createColumnRef()(Code)(Java Doc)
abstract public ColumnRef createColumnRef(SQLDBColumn column)(Code)(Java Doc)
abstract public SQLDBConnectionDefinition createDBConnectionDefinition()(Code)(Java Doc)
abstract public SQLDBConnectionDefinition createDBConnectionDefinition(DBConnectionDefinition conf)(Code)(Java Doc)
abstract public SQLDBConnectionDefinition createDBConnectionDefinition(String name, String dbType, String driverClass, String url, String user, String password, String description)(Code)(Java Doc)
abstract public SQLDBConnectionDefinition createDBConnectionDefinition(Element element) throws BaseException(Code)(Java Doc)
abstract public SQLDBModel createDBModel(int type)(Code)(Java Doc)
abstract public SQLDBModel createDBModel(DatabaseModel src, int modelType, SQLFrameworkParentObject sqlParent)(Code)(Java Doc)
abstract public SQLGroupBy createGroupBy()(Code)(Java Doc)
abstract public SQLGroupBy createGroupBy(List columns, Object parent)(Code)(Java Doc)
abstract public SQLFilter createLeftUnarySQLFilter()(Code)(Java Doc)
abstract public SQLFilter createRightUnarySQLFilter()(Code)(Java Doc)
abstract public RuntimeDatabaseModel createRuntimeDatabaseModel()(Code)(Java Doc)
abstract public RuntimeInput createRuntimeInput()(Code)(Java Doc)
abstract public RuntimeInput createRuntimeInput(RuntimeInput rinput)(Code)(Java Doc)
abstract public RuntimeOutput createRuntimeOutput()(Code)(Java Doc)
abstract public RuntimeOutput createRuntimeOutput(RuntimeOutput routput)(Code)(Java Doc)
abstract public SQLCondition createSQLCondition(String conditionName)(Code)(Java Doc)
abstract public SQLDefinition createSQLDefinition()(Code)(Java Doc)
abstract public SQLDefinition createSQLDefinition(Element element) throws BaseException(Code)(Java Doc)
abstract public SQLDefinition createSQLDefinition(Element element, SQLFrameworkParentObject parent) throws BaseException(Code)(Java Doc)
abstract public SQLDefinition createSQLDefinition(String defName)(Code)(Java Doc)
abstract public SQLFilter createSQLFilter()(Code)(Java Doc)
abstract public SQLFilter createSQLFilter(Element element) throws BaseException(Code)(Java Doc)
abstract public SQLJoinOperator createSQLJoinOperator()(Code)(Java Doc)
abstract public SQLJoinTable createSQLJoinTable(SourceTable source)(Code)(Java Doc)
abstract public SQLJoinView createSQLJoinView()(Code)(Java Doc)
abstract public SQLLiteral createSQLLiteral(String name, String value, int jdbcType) throws BaseException(Code)(Java Doc)
abstract public SQLPredicate createSQLPredicate()(Code)(Java Doc)
abstract public SourceColumn createSourceColumn(DBColumn src)(Code)(Java Doc)
abstract public SourceColumn createSourceColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isNullable)(Code)(Java Doc)
abstract public SourceColumn createSourceColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isPrimaryKey, boolean isForeignKey, boolean isIndexed, boolean isNullable)(Code)(Java Doc)
abstract public SourceTable createSourceTable(DBTable source)(Code)(Java Doc)
abstract public SourceTable createSourceTable(String name, String schema, String catalog)(Code)(Java Doc)
abstract public TargetColumn createTargetColumn(DBColumn src)(Code)(Java Doc)
abstract public TargetColumn createTargetColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isNullable)(Code)(Java Doc)
abstract public TargetColumn createTargetColumn(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isPrimaryKey, boolean isForeignKey, boolean isIndexed, boolean isNullable)(Code)(Java Doc)
abstract public TargetTable createTargetTable(DBTable source)(Code)(Java Doc)
abstract public TargetTable createTargetTable(String name, String schema, String catalog)(Code)(Java Doc)
abstract public ValidationInfo createValidationInfo(Object obj, String description, int vType)(Code)(Java Doc)
abstract public VisibleSQLLiteral createVisibleSQLLiteral(String name, String value, int jdbcType) throws BaseException(Code)(Java Doc)
abstract public VisibleSQLPredicate createVisibleSQLPredicate()(Code)(Java Doc)
public static SQLModelObjectFactory getInstance()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

ww_w_.___j___a___va2___s___.c__om | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.