|
Oracle Warehouse Builder Java API Reference 10g Release 1 (10.1) B12155-01 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
ColumnOwner interface represents an abstract, ordered column container. Examples of ColumnOwners are Table and View.
| Method Summary | |
Column |
createColumn(java.lang.String name)Creates a column as the last column (at the end) of this column owner. |
Column |
createColumn(java.lang.String name, int position)Creates a column in this column owner at the specified position. |
Column |
findColumn(java.lang.String name)Search a column by name in this column owner. |
Column[] |
getColumns()Returns the ordered list of columns of this column owner. |
void |
moveColumn(Column column, int newPosition)Moves a column to a new position. |
| Methods inherited from interface oracle.owb.foundation.OWBNamedObject |
delete, getBusinessName, getClassDefinition, getComponent, getDescription, getName, getUOID, isDeletable, isEditable, isRenamable, setBusinessName, setDescription, setName |
| Method Detail |
public Column[] getColumns()
public Column createColumn(java.lang.String name,
int position)
throws NameSpaceException,
InvalidFormatException
name - the name of column.position - the position the column should be placed on.NameSpaceException.InvalidFormatException.NameSpaceExceptionInvalidFormatException
public Column createColumn(java.lang.String name)
throws NameSpaceException,
InvalidFormatException
name - the name of column.NameSpaceException.InvalidFormatException.NameSpaceExceptionInvalidFormatExceptionpublic Column findColumn(java.lang.String name)
name - the name of the column to be found.null otherwise.
public void moveColumn(Column column,
int newPosition)
column - the column to be moved.newPosition - the new position the column will have.
|
Oracle Warehouse Builder Java API Reference 10g Release 1 (10.1) B12155-01 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||