edu.wpi.cs.dsrg.xmldb.xat.common.operator
Interface ColumnName

All Known Implementing Classes:
ColumnNameImp

public interface ColumnName
extends Visitable

An Interface to represent a column Name

Since:
1.0

Method Summary
 java.lang.String getColumnName()
          returns the column name
 java.lang.String getTableName()
          returns the table name
 void setColumnName(java.lang.String newName)
          sets the column name
 void setTableName(java.lang.String newName)
          sets the table name
 

Method Detail

getColumnName

public java.lang.String getColumnName()
returns the column name
Returns:
column name
Since:
1.0

getTableName

public java.lang.String getTableName()
returns the table name
Returns:
table name
Since:
1.0

setColumnName

public void setColumnName(java.lang.String newName)
sets the column name
Parameters:
newName - is column name
Since:
1.0

setTableName

public void setTableName(java.lang.String newName)
sets the table name
Parameters:
newName - is table name
Since:
1.0