Java Doc for SourceTableImpl.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.impl.AbstractSQLObject
      org.netbeans.modules.sql.framework.model.impl.AbstractDBTable
         org.netbeans.modules.sql.framework.model.impl.SourceTableImpl

All known Subclasses:   org.netbeans.modules.sql.framework.model.impl.RuntimeInputImpl,
SourceTableImpl
public class SourceTableImpl extends AbstractDBTable implements SourceTable(Code)
Concrete implementation of SourceTable and SQLConnectableObject classes / interfaces, representing table metadata and linking information for a target table.
author:
   Jonathan Giron
version:
   $Revision$


Field Summary
final static  StringLOG_CATEGORY
    

Constructor Summary
public  SourceTableImpl()
     No-arg constructor; initializes Collections-related member variables.
public  SourceTableImpl(DBTable src)
     Creates a new instance of AbstractDBTable, cloning the contents of the given DBTable implementation instance.
public  SourceTableImpl(String aName, String aSchema, String aCatalog)
     Creates a new instance of AbstractDBTable with the given name.

Method Summary
public  booleanaddColumn(SourceColumn theColumn)
     Adds an AbstractDBColumn instance to this table.
Parameters:
  theColumn - column to be added.
public  Objectclone()
    
public  voidcopyFrom(DBTable source)
     Sets the various member variables and collections using the given DBTable instance as a source object.
public  SourceColumncreateColumn(String columnName, int jdbcType, int scale, int precision, boolean isPK, boolean isFK, boolean isIndexed, boolean nullable)
     Convenience class to create SourceColumn instance (with the given column name, data source name, JDBC type, scale, precision, and nullable), and add it to this SourceTableImpl instance.
public  booleanequals(Object obj)
     Overrides default implementation to return value based on memberwise comparison.
public  SQLConditiongetDataValidationCondition()
     set the data validation condition.
public  StringgetDataValidationConditionText()
     Gets the Validation conidition text.
protected  StringgetElementTagName()
    
public  SQLConditiongetExtractionCondition()
     Gets the extraction condition.
public  StringgetExtractionConditionText()
     Gets the extraction conidition text.
public  StringgetExtractionType()
     Gets extraction type.
public  SQLObjectgetOutput(String argName)
     Overrides parent implementation to return SourceColumn, if any, that corresponds to the given argument name.
public  SQLGroupBygetSQLGroupBy()
    
public  SourceColumngetSourceColumn(String columnName)
    
public  StringgetTemporaryTableName()
     Gets temporary table name.
public  inthashCode()
     Overrides default implementation to compute hashCode value for those members used in equals() for comparison.
public  booleanisDropStagingTable()
     Indicates whether to delete temporary table before extraction.
public  booleanisSelectDistinct()
     Indicates whether distinct rows of a column need to be selected.
public  booleanisTruncateStagingTable()
    
public  booleanisUsedInJoin()
     Indicates whether this table is used in a join view.
public  booleanisUsingFullyQualifiedName()
    
protected  voidparseChildren(NodeList childNodeList)
    
public  voidsecondPassParse(Element element)
     Parses elements which require a second pass to resolve their values.
public  voidsetBatchSize(int newsize)
    
public  voidsetBatchSize(Integer newsize)
    
public  voidsetDataValidationCondition(SQLCondition condition)
     get the data validation condition.
public  voidsetDataValidationConditionText(String cond)
     Sets the validation condition text.
protected  voidsetDefaultAttributes()
     Overrides parent implementation to also initialize locally-defined attributes.
public  voidsetDropStagingTable(boolean drop)
     Set whether to delete temporary table before extraction.
public  voidsetDropStagingTable(Boolean drop)
     Set whether to delete temporary table before extraction.
public  voidsetExtractionCondition(SQLCondition condition)
     Sets the extraction condition.
public  voidsetExtractionConditionText(String cond)
     Sets the extraction condition text.
public  voidsetExtractionType(String eType)
     Sets the extraction type.
public  voidsetSQLGroupBy(SQLGroupBy groupBy)
    
public  voidsetSelectDistinct(boolean distinct)
     Sets wehether to select distinct rows of a column.
public  voidsetSelectDistinct(Boolean distinct)
     Sets wehether to select distinct rows of a column.
public  voidsetTemporaryTableName(String tName)
     Sets the temporary table name.
public  voidsetTruncateStagingTable(boolean truncate)
    
public  voidsetTruncateStagingTable(Boolean truncate)
    
public  voidsetUsedInJoin(boolean used)
     Sets whether this table is used in a join view.
public  voidsetUsingFullyQualifiedName(boolean usesFullName)
    
public  voidsetUsingFullyQualifiedName(Boolean usesFullName)
    
public  StringtoXMLString(String prefix)
     Returns XML representation of table metadata.
Parameters:
  prefix - prefix for the xml.
public  StringtoXMLString(String prefix, boolean tableOnly)
     Returns XML representation of table metadata.
Parameters:
  prefix - prefix for the xml.
Parameters:
  tableOnly - flag for generating table only metadata.
public  Listvalidate()
    
public  voidvisit(SQLVisitor visitor)
    
protected  voidwriteColumns(String prefix, StringBuilder xml)
    
protected  voidwriteForeignKeys(String prefix, StringBuilder xml)
    
protected  voidwriteIndices(String prefix, StringBuilder xml)
    
protected  voidwritePrimaryKey(String prefix, StringBuilder xml)
    

Field Detail
LOG_CATEGORY
final static String LOG_CATEGORY(Code)




Constructor Detail
SourceTableImpl
public SourceTableImpl()(Code)
No-arg constructor; initializes Collections-related member variables.



SourceTableImpl
public SourceTableImpl(DBTable src)(Code)
Creates a new instance of AbstractDBTable, cloning the contents of the given DBTable implementation instance.
Parameters:
  src - DBTable instance to be cloned



SourceTableImpl
public SourceTableImpl(String aName, String aSchema, String aCatalog)(Code)
Creates a new instance of AbstractDBTable with the given name.
Parameters:
  aName - name of new DBTable instance
Parameters:
  aSchema - schema of new DBTable instance; may be null
Parameters:
  aCatalog - catalog of new DBTable instance; may be null




Method Detail
addColumn
public boolean addColumn(SourceColumn theColumn)(Code)
Adds an AbstractDBColumn instance to this table.
Parameters:
  theColumn - column to be added. true if successful. false if failed.



clone
public Object clone()(Code)
Clone a deep copy of SourceTableImpl a copy of SourceTableImpl



copyFrom
public void copyFrom(DBTable source)(Code)
Sets the various member variables and collections using the given DBTable instance as a source object. Concrete implementations should override this method, call super.copyFrom(DBColumn) to pick up member variables defined in this class and then implement its own logic for copying member variables defined within itself.
Parameters:
  source - DBTable from which to obtain values for member variables andcollections



createColumn
public SourceColumn createColumn(String columnName, int jdbcType, int scale, int precision, boolean isPK, boolean isFK, boolean isIndexed, boolean nullable)(Code)
Convenience class to create SourceColumn instance (with the given column name, data source name, JDBC type, scale, precision, and nullable), and add it to this SourceTableImpl instance.
Parameters:
  columnName - Column name
Parameters:
  jdbcType - JDBC type defined in SQL.Types
Parameters:
  scale - Scale
Parameters:
  precision - Precision
Parameters:
  isPK - true if part of primary key, false otherwise
Parameters:
  isFK - true if part of foreign key, false otherwise
Parameters:
  isIndexed - true if indexed, false otherwise
Parameters:
  nullable - Nullable new DBColumnImpl instance



equals
public boolean equals(Object obj)(Code)
Overrides default implementation to return value based on memberwise comparison.
Parameters:
  obj - Object against which we compare this instance true if obj is functionally identical to this SQLTable instance; falseotherwise



getDataValidationCondition
public SQLCondition getDataValidationCondition()(Code)
set the data validation condition.
Parameters:
  condition - data validation condition



getDataValidationConditionText
public String getDataValidationConditionText()(Code)
Gets the Validation conidition text. sql condition



getElementTagName
protected String getElementTagName()(Code)

See Also:   org.netbeans.modules.sql.framework.model.impl.AbstractDBTable.getElementTagName



getExtractionCondition
public SQLCondition getExtractionCondition()(Code)
Gets the extraction condition. filter to apply while doing extraction



getExtractionConditionText
public String getExtractionConditionText()(Code)
Gets the extraction conidition text. sql condition



getExtractionType
public String getExtractionType()(Code)
Gets extraction type. extraction type



getOutput
public SQLObject getOutput(String argName) throws BaseException(Code)
Overrides parent implementation to return SourceColumn, if any, that corresponds to the given argument name.
Parameters:
  argName - argument name of linkable SQLObject linkable SQLObject corresponding to argName
throws:
  BaseException - if argName is null
See Also:   SQLObject.getOutput(java.lang.String)



getSQLGroupBy
public SQLGroupBy getSQLGroupBy()(Code)

See Also:   org.netbeans.modules.sql.framework.model.SourceTable.getSQLGroupBy



getSourceColumn
public SourceColumn getSourceColumn(String columnName)(Code)
Gets the SourceColumn, if any, associated with the given name
Parameters:
  columnName - column name SourceColumn associated with columnName, or null if none exists



getTemporaryTableName
public String getTemporaryTableName()(Code)
Gets temporary table name. temp table name



hashCode
public int hashCode()(Code)
Overrides default implementation to compute hashCode value for those members used in equals() for comparison. hash code for this object
See Also:   java.lang.Object.hashCode



isDropStagingTable
public boolean isDropStagingTable()(Code)
Indicates whether to delete temporary table before extraction. delete whether to delete temp table



isSelectDistinct
public boolean isSelectDistinct()(Code)
Indicates whether distinct rows of a column need to be selected. distinct



isTruncateStagingTable
public boolean isTruncateStagingTable()(Code)



isUsedInJoin
public boolean isUsedInJoin()(Code)
Indicates whether this table is used in a join view. boolean



isUsingFullyQualifiedName
public boolean isUsingFullyQualifiedName()(Code)



parseChildren
protected void parseChildren(NodeList childNodeList) throws BaseException(Code)

See Also:   org.netbeans.modules.sql.framework.model.impl.AbstractDBTable.parseChildren



secondPassParse
public void secondPassParse(Element element) throws BaseException(Code)
Parses elements which require a second pass to resolve their values.
Parameters:
  element - DOM element containing XML marshalled version of this SQLObjectinstance
throws:
  BaseException - if element is null or error occurs during parsing



setBatchSize
public void setBatchSize(int newsize)(Code)



setBatchSize
public void setBatchSize(Integer newsize)(Code)



setDataValidationCondition
public void setDataValidationCondition(SQLCondition condition)(Code)
get the data validation condition. data validation condition.



setDataValidationConditionText
public void setDataValidationConditionText(String cond)(Code)
Sets the validation condition text.
Parameters:
  cond - condition text



setDefaultAttributes
protected void setDefaultAttributes()(Code)
Overrides parent implementation to also initialize locally-defined attributes.



setDropStagingTable
public void setDropStagingTable(boolean drop)(Code)
Set whether to delete temporary table before extraction.
Parameters:
  drop - whether to delete temp table



setDropStagingTable
public void setDropStagingTable(Boolean drop)(Code)
Set whether to delete temporary table before extraction.
Parameters:
  drop - whether to delete temp table



setExtractionCondition
public void setExtractionCondition(SQLCondition condition)(Code)
Sets the extraction condition.
Parameters:
  condition - condition



setExtractionConditionText
public void setExtractionConditionText(String cond)(Code)
Sets the extraction condition text.
Parameters:
  cond - extraction condition text



setExtractionType
public void setExtractionType(String eType)(Code)
Sets the extraction type.
Parameters:
  eType - extraction type



setSQLGroupBy
public void setSQLGroupBy(SQLGroupBy groupBy)(Code)

See Also:   org.netbeans.modules.sql.framework.model.SourceTable.setSQLGroupBy(org.netbeans.modules.sql.framework.model.SQLGroupBy)



setSelectDistinct
public void setSelectDistinct(boolean distinct)(Code)
Sets wehether to select distinct rows of a column.
Parameters:
  distinct - distinct



setSelectDistinct
public void setSelectDistinct(Boolean distinct)(Code)
Sets wehether to select distinct rows of a column.
Parameters:
  distinct - distinct



setTemporaryTableName
public void setTemporaryTableName(String tName)(Code)
Sets the temporary table name.
Parameters:
  tName - temp table name



setTruncateStagingTable
public void setTruncateStagingTable(boolean truncate)(Code)



setTruncateStagingTable
public void setTruncateStagingTable(Boolean truncate)(Code)



setUsedInJoin
public void setUsedInJoin(boolean used)(Code)
Sets whether this table is used in a join view.
Parameters:
  used - boolean



setUsingFullyQualifiedName
public void setUsingFullyQualifiedName(boolean usesFullName)(Code)



setUsingFullyQualifiedName
public void setUsingFullyQualifiedName(Boolean usesFullName)(Code)



toXMLString
public String toXMLString(String prefix) throws BaseException(Code)
Returns XML representation of table metadata.
Parameters:
  prefix - prefix for the xml. XML representation of the table metadata.
exception:
  BaseException - - exception



toXMLString
public String toXMLString(String prefix, boolean tableOnly) throws BaseException(Code)
Returns XML representation of table metadata.
Parameters:
  prefix - prefix for the xml.
Parameters:
  tableOnly - flag for generating table only metadata. XML representation of the table metadata.
exception:
  BaseException - - exception



validate
public List validate()(Code)



visit
public void visit(SQLVisitor visitor)(Code)



writeColumns
protected void writeColumns(String prefix, StringBuilder xml) throws BaseException(Code)
Write columns
Parameters:
  prefix - - prefix
Parameters:
  xml - - buffer
throws:
  BaseException - - exception



writeForeignKeys
protected void writeForeignKeys(String prefix, StringBuilder xml)(Code)
Write foreign key
Parameters:
  prefix - - prefix
Parameters:
  xml - - buffer



writeIndices
protected void writeIndices(String prefix, StringBuilder xml)(Code)
Write indices
Parameters:
  prefix - - prefix
Parameters:
  xml - - buffer



writePrimaryKey
protected void writePrimaryKey(String prefix, StringBuilder xml)(Code)
Write primary key
Parameters:
  prefix - - prefix
Parameters:
  xml - - buffer



Fields inherited from org.netbeans.modules.sql.framework.model.impl.AbstractDBTable
final protected static String ATTR_COMMIT_BATCH_SIZE(Code)(Java Doc)
final protected static String CATALOG_NAME_ATTR(Code)(Java Doc)
final protected static String DB_TABLE_REF(Code)(Java Doc)
final protected static String DISPLAY_NAME_ATTR(Code)(Java Doc)
final protected static String ID_ATTR(Code)(Java Doc)
final protected static String INDENT(Code)(Java Doc)
final protected static int INIT_XMLBUF_SIZE(Code)(Java Doc)
final protected static String MODEL_NAME_TAG(Code)(Java Doc)
final protected static String SCHEMA_NAME_ATTR(Code)(Java Doc)
final protected static String TABLE_NAME_ATTR(Code)(Java Doc)
protected boolean aliasUsed(Code)(Java Doc)
protected String catalog(Code)(Java Doc)
protected Map<String, DBColumn> columns(Code)(Java Doc)
protected String description(Code)(Java Doc)
protected boolean editable(Code)(Java Doc)
protected Map<String, ForeignKey> foreignKeys(Code)(Java Doc)
protected GUIInfo guiInfo(Code)(Java Doc)
protected Map<String, Index> indexes(Code)(Java Doc)
protected String name(Code)(Java Doc)
protected boolean overrideCatalogName(Code)(Java Doc)
protected boolean overrideSchemaName(Code)(Java Doc)
protected String overridenCatalogName(Code)(Java Doc)
protected String overridenSchemaName(Code)(Java Doc)
protected DatabaseModel parentDBModel(Code)(Java Doc)
protected PrimaryKeyImpl primaryKey(Code)(Java Doc)
protected String schema(Code)(Java Doc)
protected boolean selected(Code)(Java Doc)

Methods inherited from org.netbeans.modules.sql.framework.model.impl.AbstractDBTable
public boolean addColumn(SQLDBColumn theColumn)(Code)(Java Doc)
public boolean addForeignKey(ForeignKeyImpl newFk)(Code)(Java Doc)
public boolean addIndex(IndexImpl newIndex)(Code)(Java Doc)
public void clearForeignKeys()(Code)(Java Doc)
public void clearIndexes()(Code)(Java Doc)
public void clearOverride(boolean clearCatalogOverride, boolean clearSchemaOverride)(Code)(Java Doc)
public int compareTo(Object refObj)(Code)(Java Doc)
public void copyFrom(DBTable source)(Code)(Java Doc)
protected void deepCopyReferences(DBTable source)(Code)(Java Doc)
public boolean deleteAllColumns()(Code)(Java Doc)
public boolean deleteColumn(String columnName)(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
public String getAliasName()(Code)(Java Doc)
public int getBatchSize()(Code)(Java Doc)
public String getCatalog()(Code)(Java Doc)
public List<DBColumn> getChildSQLObjects()(Code)(Java Doc)
public DBColumn getColumn(String columnName)(Code)(Java Doc)
public List<DBColumn> getColumnList()(Code)(Java Doc)
public Map<String, DBColumn> getColumns()(Code)(Java Doc)
public String getDescription()(Code)(Java Doc)
public String getDisplayName()(Code)(Java Doc)
protected String getElementTagName()(Code)(Java Doc)
public String getFlatFileLocationRuntimeInputName()(Code)(Java Doc)
public ForeignKey getForeignKey(String fkName)(Code)(Java Doc)
public List<ForeignKey> getForeignKeys()(Code)(Java Doc)
public String getFullyQualifiedName()(Code)(Java Doc)
public GUIInfo getGUIInfo()(Code)(Java Doc)
public Index getIndex(String indexName)(Code)(Java Doc)
public List<Index> getIndexes()(Code)(Java Doc)
public synchronized String getName()(Code)(Java Doc)
public SQLObject getObject(String objectId)(Code)(Java Doc)
public DatabaseModel getParent()(Code)(Java Doc)
public PrimaryKey getPrimaryKey()(Code)(Java Doc)
public String getQualifiedName()(Code)(Java Doc)
public ForeignKey getReferenceFor(DBTable target)(Code)(Java Doc)
public Set getReferencedTables()(Code)(Java Doc)
public String getRuntimeArgumentName()(Code)(Java Doc)
public String getSchema()(Code)(Java Doc)
public String getStagingTableName()(Code)(Java Doc)
public String getTablePrefix()(Code)(Java Doc)
public String getUniqueTableName()(Code)(Java Doc)
public String getUserDefinedCatalogName()(Code)(Java Doc)
public String getUserDefinedSchemaName()(Code)(Java Doc)
public String getUserDefinedTableName()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean isAliasUsed()(Code)(Java Doc)
public boolean isEditable()(Code)(Java Doc)
public boolean isInputStatic(String inputName)(Code)(Java Doc)
public boolean isSelected()(Code)(Java Doc)
public boolean isUsingFullyQualifiedName()(Code)(Java Doc)
public void overrideCatalogName(String nName)(Code)(Java Doc)
public void overrideSchemaName(String nName)(Code)(Java Doc)
protected void parseChildren(NodeList childNodeList) throws BaseException(Code)(Java Doc)
public void parseXML(Element tableElement) throws BaseException(Code)(Java Doc)
public boolean references(DBTable pkTarget)(Code)(Java Doc)
public boolean removeForeignKey(ForeignKeyImpl oldKey)(Code)(Java Doc)
public void setAliasName(String aName)(Code)(Java Doc)
public void setAliasUsed(boolean aliasUsed)(Code)(Java Doc)
public boolean setAllColumns(Map<String, DBColumn> theColumns)(Code)(Java Doc)
public void setBatchSize(int newSize)(Code)(Java Doc)
public void setCatalog(String newCatalog)(Code)(Java Doc)
protected void setDefaultAttributes()(Code)(Java Doc)
public void setDescription(String newDesc)(Code)(Java Doc)
public void setEditable(boolean edit)(Code)(Java Doc)
public void setFlatFileLocationRuntimeInputName(String runtimeArgName)(Code)(Java Doc)
public void setForeignKeyMap(Map<String, ForeignKey> fkMap)(Code)(Java Doc)
public void setName(String newName)(Code)(Java Doc)
public void setParent(SQLDBModel newParent)(Code)(Java Doc)
public boolean setPrimaryKey(PrimaryKeyImpl newPk)(Code)(Java Doc)
public void setSchema(String newSchema)(Code)(Java Doc)
public void setSelected(boolean sel)(Code)(Java Doc)
public void setStagingTableName(String stName)(Code)(Java Doc)
public void setTablePrefix(String tPrefix)(Code)(Java Doc)
public void setUserDefinedCatalogName(String newName)(Code)(Java Doc)
public void setUserDefinedSchemaName(String newName)(Code)(Java Doc)
public void setUserDefinedTableName(String newName)(Code)(Java Doc)
public void setUsingFullyQualifiedName(boolean usesFullName)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public String toXMLString(String prefix) throws BaseException(Code)(Java Doc)
public String toXMLString(String prefix, boolean tableOnly) throws BaseException(Code)(Java Doc)

Fields inherited from org.netbeans.modules.sql.framework.model.impl.AbstractSQLObject
protected Map attributes(Code)(Java Doc)
protected transient String displayName(Code)(Java Doc)
protected transient String id(Code)(Java Doc)
protected transient String objectType(Code)(Java Doc)
protected transient Object parentObject(Code)(Java Doc)
protected int type(Code)(Java Doc)

Methods inherited from org.netbeans.modules.sql.framework.model.impl.AbstractSQLObject
public Object cloneSQLObject() throws CloneNotSupportedException(Code)(Java Doc)
public void copyFromSource(SQLObject source)(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
public Attribute getAttribute(String attrName)(Code)(Java Doc)
public Collection getAttributeNames()(Code)(Java Doc)
public Object getAttributeObject(String attrName)(Code)(Java Doc)
public List getChildSQLObjects()(Code)(Java Doc)
public String getDisplayName()(Code)(Java Doc)
public String getFooter()(Code)(Java Doc)
public String getHeader()(Code)(Java Doc)
public String getId()(Code)(Java Doc)
public int getJdbcType()(Code)(Java Doc)
public int getObjectType()(Code)(Java Doc)
public SQLObject getOutput(String argName) throws BaseException(Code)(Java Doc)
public Object getParentObject()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
protected void parseCommonAttributesAndTags(Element xmlElement) throws BaseException(Code)(Java Doc)
public void parseXML(Element xmlElement) throws BaseException(Code)(Java Doc)
public void reset()(Code)(Java Doc)
public void secondPassParse(Element element) throws BaseException(Code)(Java Doc)
public void setAttribute(String attrName, Object val)(Code)(Java Doc)
public void setDisplayName(String newName)(Code)(Java Doc)
public void setId(String newId) throws BaseException(Code)(Java Doc)
public void setJdbcType(int newType)(Code)(Java Doc)
public void setParentObject(Object newParent) throws BaseException(Code)(Java Doc)
protected String toXMLAttributeTags(String prefix)(Code)(Java Doc)
public String toXMLString(String prefix) throws BaseException(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)

w___ww__.__j___a_va2_s.c___o___m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.