eu.bootstrep.Beans
Class TheTable

java.lang.Object
  extended by eu.bootstrep.Beans.TheTable

public class TheTable
extends java.lang.Object

This bean shapes target frame tables. Different types of this kind of tables are, as usual

Each kind of target frame tables are managed in the same way. Differences exist on the moment in which these tables are loaded.
This beans contains the following:
This bean is instantiated in the class.


Field Summary
(package private)  java.util.ArrayList fileContent
          List containing the values for target tables.
(package private)  java.lang.String theCols
          The list of columns for a given table.
(package private)  java.lang.String theInputFile
          The input file containing data data to load.
(package private)  java.lang.String theQuery
          The sql query used to load data.
(package private)  java.lang.String theTableName
          The target table to load.
 
Constructor Summary
TheTable()
          Create a new instance of TheTable.
 
Method Summary
 java.util.ArrayList getFileContent()
          get the string containing the content of input file
 java.lang.String getTheCols()
          get the string containing the list of columns.
Usually this string is in the following form: (col1,col2..coln)
 java.lang.String getTheInputFile()
          get the string containing the name of the input file
 java.lang.String getTheQuery()
          get the query to execute
 java.lang.String getTheTableName()
          get the string containing the name of the target table
 void setFileContent(java.util.ArrayList fileContent)
          set the string containing the content of input file
 void setTheCols(java.lang.String theCols)
          set the string containing the list of columns.
 void setTheInputFile(java.lang.String theInputFile)
          set the string containing the name of the input file
 void setTheQuery(java.lang.String theQuery)
          set the string containing the query to execute
 void setTheTableName(java.lang.String theTableName)
          set the string containing the name of the target table
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

theTableName

java.lang.String theTableName
The target table to load.
This variable along with its get& set methods is used in:


theCols

java.lang.String theCols
The list of columns for a given table.
This variable along with its get& set methods is used in:


theQuery

java.lang.String theQuery
The sql query used to load data.
This variable along with its get& set methods is used in:


theInputFile

java.lang.String theInputFile
The input file containing data data to load.
This variable along with its get& set methods is used in:


fileContent

java.util.ArrayList fileContent
List containing the values for target tables.
This variable along with its get& set methods is used in:

Constructor Detail

TheTable

public TheTable()
Create a new instance of TheTable.

Method Detail

getFileContent

public java.util.ArrayList getFileContent()
get the string containing the content of input file

Returns:
the theInputFile

setFileContent

public void setFileContent(java.util.ArrayList fileContent)
set the string containing the content of input file

Parameters:
fileContent - the theInputFile to set

getTheInputFile

public java.lang.String getTheInputFile()
get the string containing the name of the input file

Returns:
the theInputFile

setTheInputFile

public void setTheInputFile(java.lang.String theInputFile)
set the string containing the name of the input file

Parameters:
theInputFile - the theInputFile to set

getTheQuery

public java.lang.String getTheQuery()
get the query to execute

Returns:
the theQuery

setTheQuery

public void setTheQuery(java.lang.String theQuery)
set the string containing the query to execute

Parameters:
theQuery - the theQuery to set

getTheTableName

public java.lang.String getTheTableName()
get the string containing the name of the target table

Returns:
the theTableName

setTheTableName

public void setTheTableName(java.lang.String theTableName)
set the string containing the name of the target table

Parameters:
theTableName - the theTableName to set

getTheCols

public java.lang.String getTheCols()
get the string containing the list of columns.
Usually this string is in the following form: (col1,col2..coln)

Returns:
the theCols

setTheCols

public void setTheCols(java.lang.String theCols)
set the string containing the list of columns.
Usually this string is in the following form: (col1,col2..coln)

Parameters:
theCols - the theCols to set