org.objectweb.medor.query.rdb.api

Interface QualifiedTable

All Superinterfaces:
Cloneable
Known Implementing Classes:
BasicQualifiedTable

public interface QualifiedTable
extends Cloneable

A QualifiedTable represents a table name with its potential alias. It represents a table used in a SQL request. It is used by RdbExpQueryLeaves and RdbExpFields.

Author:
Alexandre Lefebvre

See Also:
RdbExpQueryLeaf, RdbExpField

Method Summary

String
getAliasName()
Return the alias name for the current QualifiedTable.
String
getTableName()
Returns the table name for the current QualifiedTable.
void
setAliasName(String newName)

Method Details

getAliasName

public String getAliasName()
Return the alias name for the current QualifiedTable.

Returns:
the alias name for the current QualifiedTable.


getTableName

public String getTableName()
Returns the table name for the current QualifiedTable.

Returns:
the table name for the current QualifiedTable.


setAliasName

public void setAliasName(String newName)