SMACS

smacs.load.schema
Interface DbSchemaColumn

All Known Implementing Classes:
DbSchemaColumnNode

public interface DbSchemaColumn

Dbviz Column operations.

A column knows its name and the table it is part of. Some further contraints might be set for the type of the column as well as initializations and most prominently default values.

Author:
Copyright (C) 2004, Guido Draheim. All rights reserved. Part of SMACS project.

Method Summary
 String getColumnName()
          The name of the column within its table/parent.
 String getColumnType()
          The type is given as a flat string.
 DbSchemaTable hasParentTable()
           
 

Method Detail

hasParentTable

public DbSchemaTable hasParentTable()

getColumnName

public String getColumnName()
The name of the column within its table/parent. The most common question.


getColumnType

public String getColumnType()
The type is given as a flat string. Even for the more complex type annotations.


SMACS