Ontimize 5.2072EN

com.ontimize.db.sql
Class SQLTable

java.lang.Object
  extended bycom.ontimize.db.sql.SQLTable
Direct Known Subclasses:
SQLTableAlter, SQLTableCreation, SQLTableDrop

public class SQLTable
extends java.lang.Object

Class to define the properties for the table to create in the database


Field Summary
protected  java.lang.String tableName
          The name of the table.
 
Constructor Summary
SQLTable(java.lang.String tableName)
          Creates a new SQLTable indicating the name of the table
 
Method Summary
 java.lang.String getTableName()
          Returns the name of the table.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

tableName

protected java.lang.String tableName
The name of the table.

Constructor Detail

SQLTable

public SQLTable(java.lang.String tableName)
Creates a new SQLTable indicating the name of the table

Parameters:
tableName - The name of the table.
Method Detail

getTableName

public java.lang.String getTableName()
Returns the name of the table.

Returns:
a String with the name of the table

Ontimize