Java Doc for TableElementImpl.java in  » IDE-Netbeans » db » org » netbeans » modules » dbschema » jdbcimpl » 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 » db » org.netbeans.modules.dbschema.jdbcimpl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.modules.dbschema.jdbcimpl.DBElementImpl
      org.netbeans.modules.dbschema.jdbcimpl.TableElementImpl

TableElementImpl
public class TableElementImpl extends DBElementImpl implements TableElement.Impl(Code)



Constructor Summary
public  TableElementImpl()
    
public  TableElementImpl(String table)
    

Method Summary
public  voidchangeColumnPairs(ColumnPairElement[] pairs, int action)
    
public  voidchangeColumns(ColumnElement[] elems, int action)
     Change the set of columns.
public  voidchangeIndexes(IndexElement[] elems, int action)
     Change the set of indexes.
public  voidchangeKeys(KeyElement[] elems, int action)
     Change the set of keys.
public  ColumnElementgetColumn(DBIdentifier name)
     Find a column by name.
public  DBElementsCollectiongetColumnCollection()
     Returns the column collection of this table element.
public  ColumnPairElementgetColumnPair(DBIdentifier name)
    
public  ColumnPairElement[]getColumnPairs()
    
public  ColumnElement[]getColumns()
     Get all columns.
public  IndexElementgetIndex(DBIdentifier name)
     Find an index by name.
public  DBElementsCollectiongetIndexCollection()
     Returns the index collection of this table element.
public  IndexElement[]getIndexes()
     Get all indexes.
public  KeyElementgetKey(DBIdentifier name)
     Find a key by name.
public  DBElementsCollectiongetKeyCollection()
     Returns the key collection of this table element.
public  KeyElement[]getKeys()
     Get all keys.
public  DBIdentifiergetName()
     Get the name of this element.
protected  voidinitColumns(ConnectionProvider cp)
    
protected  voidinitIndexes(ConnectionProvider cp)
    
protected  voidinitIndexes(ConnectionProvider cp, String tbl)
    
protected  voidinitKeys(ConnectionProvider cp)
    
protected  voidinitKeys(ConnectionProvider cp, int id)
    
protected  voidinitKeys(ConnectionProvider cp, int id, String tbl)
    
public  booleanisTableOrView()
     Test whether this is really a class, or an interface.
public  voidsetColumnCollection(DBElementsCollection collection)
     Set the column collection of this table element to the supplied collection.
public  voidsetIndexCollection(DBElementsCollection collection)
     Set the indwx collection of this table element to the supplied collection.
public  voidsetKeyCollection(DBElementsCollection collection)
     Set the key collection of this table element to the supplied collection.
public  voidsetTableOrView(boolean isTable)
     Set whether this is really a table, or a view.


Constructor Detail
TableElementImpl
public TableElementImpl()(Code)



TableElementImpl
public TableElementImpl(String table)(Code)
Creates new TableElementImpl




Method Detail
changeColumnPairs
public void changeColumnPairs(ColumnPairElement[] pairs, int action) throws DBException(Code)



changeColumns
public void changeColumns(ColumnElement[] elems, int action) throws DBException(Code)
Change the set of columns.
Parameters:
  elems - the columns to change
Parameters:
  action - one of TableElementImpl.ADD, TableElementImpl.REMOVE, or TableElementImpl.SET
exception:
  DBException - if the action cannot be handled



changeIndexes
public void changeIndexes(IndexElement[] elems, int action) throws DBException(Code)
Change the set of indexes.
Parameters:
  elems - the indexes to change
Parameters:
  action - one of TableElementImpl.ADD, TableElementImpl.REMOVE, or TableElementImpl.SET
exception:
  DBException - if the action cannot be handled



changeKeys
public void changeKeys(KeyElement[] elems, int action) throws DBException(Code)
Change the set of keys.
Parameters:
  elems - the keys to change
Parameters:
  action - one of TableElementImpl.ADD, TableElementImpl.REMOVE, or TableElementImpl.SET
exception:
  DBException - if the action cannot be handled



getColumn
public ColumnElement getColumn(DBIdentifier name)(Code)
Find a column by name.
Parameters:
  name - the name for which to look the column, or null if it does not exist



getColumnCollection
public DBElementsCollection getColumnCollection()(Code)
Returns the column collection of this table element. This method should only be used internally and for cloning and archiving. the column collection of this table element



getColumnPair
public ColumnPairElement getColumnPair(DBIdentifier name)(Code)



getColumnPairs
public ColumnPairElement[] getColumnPairs()(Code)



getColumns
public ColumnElement[] getColumns()(Code)
Get all columns. the columns



getIndex
public IndexElement getIndex(DBIdentifier name)(Code)
Find an index by name.
Parameters:
  name - the name for which to look the index, or null if it does not exist



getIndexCollection
public DBElementsCollection getIndexCollection()(Code)
Returns the index collection of this table element. This method should only be used internally and for cloning and archiving. the index collection of this table element



getIndexes
public IndexElement[] getIndexes()(Code)
Get all indexes. the indexes



getKey
public KeyElement getKey(DBIdentifier name)(Code)
Find a key by name.
Parameters:
  name - the name for which to look the key, or null if it does not exist



getKeyCollection
public DBElementsCollection getKeyCollection()(Code)
Returns the key collection of this table element. This method should only be used internally and for cloning and archiving. the key collection of this table element



getKeys
public KeyElement[] getKeys()(Code)
Get all keys. the keys



getName
public DBIdentifier getName()(Code)
Get the name of this element. the name



initColumns
protected void initColumns(ConnectionProvider cp)(Code)



initIndexes
protected void initIndexes(ConnectionProvider cp)(Code)



initIndexes
protected void initIndexes(ConnectionProvider cp, String tbl)(Code)



initKeys
protected void initKeys(ConnectionProvider cp)(Code)



initKeys
protected void initKeys(ConnectionProvider cp, int id)(Code)



initKeys
protected void initKeys(ConnectionProvider cp, int id, String tbl)(Code)



isTableOrView
public boolean isTableOrView()(Code)
Test whether this is really a class, or an interface. one of TableElementImpl.TABLE or TableElementImpl.VIEW



setColumnCollection
public void setColumnCollection(DBElementsCollection collection)(Code)
Set the column collection of this table element to the supplied collection. This method should only be used internally and for cloning and archiving.
Parameters:
  collection - the column collection of this table element



setIndexCollection
public void setIndexCollection(DBElementsCollection collection)(Code)
Set the indwx collection of this table element to the supplied collection. This method should only be used internally and for cloning and archiving.
Parameters:
  collection - the index collection of this table element



setKeyCollection
public void setKeyCollection(DBElementsCollection collection)(Code)
Set the key collection of this table element to the supplied collection. This method should only be used internally and for cloning and archiving.
Parameters:
  collection - the key collection of this table element



setTableOrView
public void setTableOrView(boolean isTable) throws DBException(Code)
Set whether this is really a table, or a view.
Parameters:
  isTable - one of TableElementImpl.TABLE or TableElementImpl.VIEW
throws:
  DBException - if impossible



Fields inherited from org.netbeans.modules.dbschema.jdbcimpl.DBElementImpl
protected DBIdentifier _name(Code)(Java Doc)
DBElement element(Code)(Java Doc)

Methods inherited from org.netbeans.modules.dbschema.jdbcimpl.DBElementImpl
public synchronized void addPropertyChangeListener(PropertyChangeListener l)(Code)(Java Doc)
public void attachToElement(DBElement el)(Code)(Java Doc)
protected boolean comp(Object obj1, Object obj2)(Code)(Java Doc)
final protected void firePropertyChange(String name, Object o, Object n)(Code)(Java Doc)
public DBIdentifier getName()(Code)(Java Doc)
public void removePropertyChangeListener(PropertyChangeListener l)(Code)(Java Doc)
public void setName(DBIdentifier name) throws DBException(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)

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