| java.lang.Object org.netbeans.modules.sql.framework.model.impl.AbstractSQLObject org.netbeans.modules.sql.framework.model.impl.AbstractDBColumn org.netbeans.modules.sql.framework.model.impl.SourceColumnImpl
SourceColumnImpl | public class SourceColumnImpl extends AbstractDBColumn implements SourceColumn(Code) | | Concrete implementation of SourceColumn describing column metadata for source columns.
author: Sudhendra Seshachala, Jonathan Giron version: $Revision$ |
Constructor Summary | |
public | SourceColumnImpl() Constructs default instance of SourceColumnImpl. | public | SourceColumnImpl(DBColumn src) Constructs a new instance of SourceColumnImpl, cloning the contents of the given
DBColumn implementation instance. | public | SourceColumnImpl(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isNullable) Constructs a new instance of SourceColumnImpl using the given parameters and
assuming that the column is not part of a foreign key or primary key, and that it
accepts null values. | public | SourceColumnImpl(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isPrimaryKey, boolean isForeignKey, boolean isIndexed, boolean isNullable) |
SourceColumnImpl | public SourceColumnImpl()(Code) | | Constructs default instance of SourceColumnImpl.
|
SourceColumnImpl | public SourceColumnImpl(DBColumn src)(Code) | | Constructs a new instance of SourceColumnImpl, cloning the contents of the given
DBColumn implementation instance.
Parameters: src - DBColumn instance to be cloned |
SourceColumnImpl | public SourceColumnImpl(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isNullable)(Code) | | Constructs a new instance of SourceColumnImpl using the given parameters and
assuming that the column is not part of a foreign key or primary key, and that it
accepts null values.
Parameters: colName - name of this column Parameters: sqlJdbcType - JDBC type of this column Parameters: colScale - scale of this column Parameters: colPrecision - precision of this column Parameters: isNullable - true if nullable, false otherwise See Also: java.sql.Types |
SourceColumnImpl | public SourceColumnImpl(String colName, int sqlJdbcType, int colScale, int colPrecision, boolean isPrimaryKey, boolean isForeignKey, boolean isIndexed, boolean isNullable)(Code) | | See Also: org.netbeans.modules.sql.framework.model.impl.AbstractDBColumn See Also: (java.lang.String,int,int,boolean,int,boolean,boolean,boolean) |
clone | public Object clone()(Code) | | Clone a deep copy of SourceColumnImpl.
a copy of SourceColumnImpl. |
toString | public String toString()(Code) | | Overrides default implementation to return evaluated column name.
evaluated column name. |
|
|