Java Doc for SQLObjectUtil.java in  » IDE-Netbeans » etl.project » org » netbeans » modules » sql » framework » model » utils » 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.utils 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.modules.sql.framework.model.utils.SQLObjectUtil

SQLObjectUtil
public class SQLObjectUtil (Code)

author:
   Ritesh Adval
author:
   Ahimanikya Satapathy


Field Summary
final public static  StringFILE_LOC
    


Method Summary
public static  voidcreateMissingModelTablesInDB(ETLDataObject dataObj)
    
public static  SourceColumncreateRuntimeInput(SQLDBTable sTable, SQLDefinition sqlDefn)
    
public static  SourceColumncreateRuntimeInputArg(SQLDBTable sTable, String ffArgName)
    
public static  SourceColumncreateRuntimeInputArg(SQLDBTable sTable, String ffArgName, DBConnectionDefinition connDef)
    
public static  voidcreateTable(SQLDBTable aTable, SQLDBModel model)
    
public static  voiddropTable(SQLDBTable table, SQLDBModel model)
    
public static  StringgenerateFFRuntimeInputName(String prefix, SQLDBTable table)
    
public static  StringgenerateTemporaryTableName(String tableName)
    
public static  StringgenerateTemporaryTableName(String prefix, String tableName)
    
public static  ListgetAllExpressionObjects(Collection objs)
    
public static  SQLDefinitiongetAncestralSQLDefinition(SQLObject sqlObj)
     Gets ancestral SQLDefinition instance for the given SQLExpresionObject.
public static  ListgetAutoJoins(SQLJoinTable right, Collection lookupCollection)
     Creates a List of automatically generated join objects (if any) between the given and existing s in the model.
public static  SQLConnectableObjectgetExpressionObject(SQLObject sqlObject, Collection allObjects)
    
public static  SourceTablegetInputSourceTable(SQLObject obj)
    
public static  SourceTablegetInputSourceTable(SQLObject obj, Collection allObjects)
    
public static  TargetTablegetMappedTargetTable(SQLJoinView jv, Collection targetTables)
    
public static  TargetTablegetMappedTargetTable(SQLObject sqlObj, Collection targetTables)
    
public static  RuntimeInputgetRuntimeInput(SQLDBTable table)
     Gets RuntimeInput, if any, associated with the parent SQLDefinition of the given SQLDBTable.
public static  Map<String, String>getTableMetaData(SQLDBTable table)
    
public static  StringgetTargetTableCountRuntimeOutput(TargetTable targetTable)
     Generates runtime output name to be used in referencing the count of rows inserted or updated for the given TargetTable.
public static  SQLConnectableObjectgetTopExpressionObject(SQLObject sqlObject, Collection allObjects)
    
public static  SQLCanvasObjectgetTopSQLCanvasObject(SQLObject sqlObj)
    
public static  booleanisAggregateFunctionMapped(SQLObject obj)
    
public static  booleanisObjectMappedToExpression(SQLObject obj, SQLConnectableObject expObj)
    
public static  voidmigrateJoinCondition(SQLPredicate predicate, SQLCondition condition)
    
public static  SourceColumnremoveRuntimeInput(SQLDBTable sTable, CollabSQLUIModel sqlModel)
    
public static  voidsetOrgProperties(SQLDBTable sTable)
    

Field Detail
FILE_LOC
final public static String FILE_LOC(Code)





Method Detail
createMissingModelTablesInDB
public static void createMissingModelTablesInDB(ETLDataObject dataObj)(Code)



createRuntimeInput
public static SourceColumn createRuntimeInput(SQLDBTable sTable, SQLDefinition sqlDefn) throws BaseException(Code)



createRuntimeInputArg
public static SourceColumn createRuntimeInputArg(SQLDBTable sTable, String ffArgName)(Code)



createRuntimeInputArg
public static SourceColumn createRuntimeInputArg(SQLDBTable sTable, String ffArgName, DBConnectionDefinition connDef) throws BaseException(Code)



createTable
public static void createTable(SQLDBTable aTable, SQLDBModel model) throws BaseException, SQLException(Code)



dropTable
public static void dropTable(SQLDBTable table, SQLDBModel model) throws BaseException, SQLException(Code)



generateFFRuntimeInputName
public static String generateFFRuntimeInputName(String prefix, SQLDBTable table)(Code)



generateTemporaryTableName
public static String generateTemporaryTableName(String tableName)(Code)



generateTemporaryTableName
public static String generateTemporaryTableName(String prefix, String tableName)(Code)



getAllExpressionObjects
public static List getAllExpressionObjects(Collection objs)(Code)



getAncestralSQLDefinition
public static SQLDefinition getAncestralSQLDefinition(SQLObject sqlObj)(Code)
Gets ancestral SQLDefinition instance for the given SQLExpresionObject.
Parameters:
  sqlObj - SQLConnectableObject whose ancestor SQLDefinition is sought SQLDefinition instance



getAutoJoins
public static List getAutoJoins(SQLJoinTable right, Collection lookupCollection) throws BaseException(Code)
Creates a List of automatically generated join objects (if any) between the given and existing s in the model. Any new instances will need to be added to this SQLDefinition, as well as their contained SQLPredicate conditions.
Parameters:
  right - SourceTable against which we check for join relationships withexisting SourceTables List of Join objects, empty if no relationships were detected.
throws:
  BaseException - for any internal (unspecific) error.



getExpressionObject
public static SQLConnectableObject getExpressionObject(SQLObject sqlObject, Collection allObjects)(Code)



getInputSourceTable
public static SourceTable getInputSourceTable(SQLObject obj)(Code)
get source table connected to this sql object



getInputSourceTable
public static SourceTable getInputSourceTable(SQLObject obj, Collection allObjects)(Code)
get mapped target table for a source table



getMappedTargetTable
public static TargetTable getMappedTargetTable(SQLJoinView jv, Collection targetTables)(Code)
get mapped target table for a source table



getMappedTargetTable
public static TargetTable getMappedTargetTable(SQLObject sqlObj, Collection targetTables)(Code)
get mapped target table for a source table



getRuntimeInput
public static RuntimeInput getRuntimeInput(SQLDBTable table)(Code)
Gets RuntimeInput, if any, associated with the parent SQLDefinition of the given SQLDBTable.
Parameters:
  table - SQLDBTable whose parent's RuntimeInput is to be obtained RuntimeInput associated with the parent of table , or null if nosuch instance exists.



getTableMetaData
public static Map<String, String> getTableMetaData(SQLDBTable table) throws SQLException, BaseException(Code)



getTargetTableCountRuntimeOutput
public static String getTargetTableCountRuntimeOutput(TargetTable targetTable)(Code)
Generates runtime output name to be used in referencing the count of rows inserted or updated for the given TargetTable.
Parameters:
  targetTable - TargetTable whose count of rows will be referenced by thegenerated runtime output String representing runtime output name for count of rows processed intargetTable



getTopExpressionObject
public static SQLConnectableObject getTopExpressionObject(SQLObject sqlObject, Collection allObjects)(Code)



getTopSQLCanvasObject
public static SQLCanvasObject getTopSQLCanvasObject(SQLObject sqlObj)(Code)



isAggregateFunctionMapped
public static boolean isAggregateFunctionMapped(SQLObject obj)(Code)
get source table connected to this sql object



isObjectMappedToExpression
public static boolean isObjectMappedToExpression(SQLObject obj, SQLConnectableObject expObj)(Code)



migrateJoinCondition
public static void migrateJoinCondition(SQLPredicate predicate, SQLCondition condition) throws BaseException(Code)



removeRuntimeInput
public static SourceColumn removeRuntimeInput(SQLDBTable sTable, CollabSQLUIModel sqlModel) throws BaseException(Code)



setOrgProperties
public static void setOrgProperties(SQLDBTable sTable) throws BaseException(Code)



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)

w_ww__.__j_a__v___a_2s__.__c___om | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.