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


org.netbeans.modules.sql.framework.model.SQLDBTable

All known Subclasses:   org.netbeans.modules.sql.framework.model.impl.AbstractDBTable,
SQLDBTable
public interface SQLDBTable extends DBTable,SQLCanvasObject,SQLObject(Code)
Extension of DBTable


Field Summary
final public static  StringTABLE_TAG
    


Method Summary
public  booleanaddColumn(SQLDBColumn theColumn)
    
public  voidclearOverride(boolean clearCatalogOverride, boolean clearSchemaOverride)
    
public  voidcopyFrom(DBTable source)
    
public  booleandeleteAllColumns()
    
public  booleandeleteColumn(String columnName)
     Deletes SQLDBColumn, if any, associated with the given column name.
public  StringgetAliasName()
    
public  intgetBatchSize()
     Gets commit batch size for this db table.
public  StringgetFlatFileLocationRuntimeInputName()
     Gets the flat file location runtime input name which is generate when a flat file table is added to collaboration.
public  StringgetFullyQualifiedName()
    
public  SQLObjectgetObject(String objectId)
    
public  StringgetQualifiedName()
    
public  StringgetRuntimeArgumentName()
    
public  StringgetStagingTableName()
     Gets the staging table name.
public  StringgetTablePrefix()
    
public  StringgetUniqueTableName()
    
public  StringgetUserDefinedCatalogName()
     Gets the user defined catalog name.
public  StringgetUserDefinedSchemaName()
     Gets the user defined schema name.
public  StringgetUserDefinedTableName()
     Gets the user defined table name.
public  booleanisAliasUsed()
    
public  booleanisEditable()
     Indicates whether table is editable.
public  booleanisSelected()
     Indicates whether table is selected.
public  booleanisUsingFullyQualifiedName()
     Indicates whether the fully-qualified form should be used whenever one resolves this table's name.
public  voidoverrideCatalogName(String nName)
    
public  voidoverrideSchemaName(String nName)
    
public  voidsetAliasName(String aName)
    
public  voidsetAliasUsed(boolean aliasUsed)
    
public  voidsetBatchSize(int newSize)
     Sets commit batch size for this db table.
public  voidsetCatalog(String newCatalog)
    
public  voidsetEditable(boolean editable)
     Sets whether table is editable.
public  voidsetFlatFileLocationRuntimeInputName(String runtimeArgName)
    
public  voidsetName(String newName)
     Sets table name to given value.
public  voidsetParent(SQLDBModel newParent)
    
public  voidsetSchema(String schema)
     Sets schema name of this table.
public  voidsetSelected(boolean sel)
     Sets whether table is selected.
public  voidsetStagingTableName(String stName)
     Sets the staging table name.
public  voidsetTablePrefix(String tPrefix)
     Sets the user defined table name.
public  voidsetUserDefinedCatalogName(String newName)
     Sets the user defined catalog name.
public  voidsetUserDefinedSchemaName(String newName)
     Sets the user defined schema name.
public  voidsetUserDefinedTableName(String newName)
     Sets the user defined table name.
public  voidsetUsingFullyQualifiedName(boolean usesFullName)
     Indicates whether the fully-qualified form should be used whenever one resolves this table's name.

Field Detail
TABLE_TAG
final public static String TABLE_TAG(Code)
Constant for table metadata name tag.*





Method Detail
addColumn
public boolean addColumn(SQLDBColumn theColumn)(Code)
Adds given SQLDBColumn to this table
Parameters:
  theColumn - SQLDBColumn to be added true if addition succeeded



clearOverride
public void clearOverride(boolean clearCatalogOverride, boolean clearSchemaOverride)(Code)
Clear catalog name override



copyFrom
public void copyFrom(DBTable source)(Code)
Copies information from given DBTable instance
Parameters:
  source - DBTable from which to copy table info



deleteAllColumns
public boolean deleteAllColumns()(Code)
Deletes all columns from this table true of deletion succeeded



deleteColumn
public boolean deleteColumn(String columnName)(Code)
Deletes SQLDBColumn, if any, associated with the given column name.
Parameters:
  columnName - column name of SQLDBColumn to delete true if deletion succeeded



getAliasName
public String getAliasName()(Code)
get the alias name for this table alias name



getBatchSize
public int getBatchSize()(Code)
Gets commit batch size for this db table. batch size for commits involving this table.



getFlatFileLocationRuntimeInputName
public String getFlatFileLocationRuntimeInputName()(Code)
Gets the flat file location runtime input name which is generate when a flat file table is added to collaboration. Use this name at runtime for file location passed by eInsight. name of runtime input argument for flat file location



getFullyQualifiedName
public String getFullyQualifiedName()(Code)
get table fully qualified name including schema , catalog info fully qualified table name prefixed with alias



getObject
public SQLObject getObject(String objectId)(Code)



getQualifiedName
public String getQualifiedName()(Code)
get table qualified name qualified table name prefixed with alias



getRuntimeArgumentName
public String getRuntimeArgumentName()(Code)



getStagingTableName
public String getStagingTableName()(Code)
Gets the staging table name. staging table name



getTablePrefix
public String getTablePrefix()(Code)
Gets the user defined table name prefix user defined table



getUniqueTableName
public String getUniqueTableName()(Code)
Gets concats tablename alias name String Unique name for the table



getUserDefinedCatalogName
public String getUserDefinedCatalogName()(Code)
Gets the user defined catalog name. user defined catalog name



getUserDefinedSchemaName
public String getUserDefinedSchemaName()(Code)
Gets the user defined schema name. user defined schema name



getUserDefinedTableName
public String getUserDefinedTableName()(Code)
Gets the user defined table name. user defined table name



isAliasUsed
public boolean isAliasUsed()(Code)
Returns the aliasUsed.



isEditable
public boolean isEditable()(Code)
Indicates whether table is editable. true if table is editable, false otherwise



isSelected
public boolean isSelected()(Code)
Indicates whether table is selected. true if table is selected, false otherwise



isUsingFullyQualifiedName
public boolean isUsingFullyQualifiedName()(Code)
Indicates whether the fully-qualified form should be used whenever one resolves this table's name. true if fully-qualified form should be used, false otherwise



overrideCatalogName
public void overrideCatalogName(String nName)(Code)
Override Catalog name
Parameters:
  nName -



overrideSchemaName
public void overrideSchemaName(String nName)(Code)
Override Schema Name
Parameters:
  nName -



setAliasName
public void setAliasName(String aName)(Code)
set the alias name for this table
Parameters:
  aName - alias name



setAliasUsed
public void setAliasUsed(boolean aliasUsed)(Code)

Parameters:
  aliasUsed - The aliasUsed to set.



setBatchSize
public void setBatchSize(int newSize)(Code)
Sets commit batch size for this db table.
Parameters:
  newSize - new batch size value for commits involving this table; use -1 to usedefault batch size.



setCatalog
public void setCatalog(String newCatalog)(Code)



setEditable
public void setEditable(boolean editable)(Code)
Sets whether table is editable.
Parameters:
  editable - true if table is editable, false otherwise



setFlatFileLocationRuntimeInputName
public void setFlatFileLocationRuntimeInputName(String runtimeArgName)(Code)
set flat file location runtime input name which is generate when a flat file table is added to collaboration
Parameters:
  runtimeArgName - name of runtime input argument for flat file location



setName
public void setName(String newName)(Code)
Sets table name to given value.
Parameters:
  newName - new table name



setParent
public void setParent(SQLDBModel newParent)(Code)



setSchema
public void setSchema(String schema)(Code)
Sets schema name of this table.
Parameters:
  schema - new schema name



setSelected
public void setSelected(boolean sel)(Code)
Sets whether table is selected.
Parameters:
  sel - true if table is selected, false otherwise



setStagingTableName
public void setStagingTableName(String stName)(Code)
Sets the staging table name.
Parameters:
  stName - staging table name



setTablePrefix
public void setTablePrefix(String tPrefix)(Code)
Sets the user defined table name.
Parameters:
  tPrefix - user defined table name



setUserDefinedCatalogName
public void setUserDefinedCatalogName(String newName)(Code)
Sets the user defined catalog name.
Parameters:
  newName - user defined table name



setUserDefinedSchemaName
public void setUserDefinedSchemaName(String newName)(Code)
Sets the user defined schema name.
Parameters:
  newName - user defined schema name



setUserDefinedTableName
public void setUserDefinedTableName(String newName)(Code)
Sets the user defined table name.
Parameters:
  newName - user defined table name



setUsingFullyQualifiedName
public void setUsingFullyQualifiedName(boolean usesFullName)(Code)
Indicates whether the fully-qualified form should be used whenever one resolves this table's name.
Parameters:
  usesFullName - true if fully-qualified form should be used, false otherwise



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.