jas.statistics.db
Class CollectionTable

java.lang.Object
  extended by jas.statistics.db.Table
      extended by jas.statistics.db.CollectionTable
All Implemented Interfaces:
ISimEventListener

public class CollectionTable
extends Table

A database table which stores one or more variables of a collection of agents. For each time the table is updated, it stores on database one record per agent in the collection. \

Title: JAS

Description: Java Agent-based Simulation library

Copyright (C) 2002 Michele Sonnessa

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

Author:
Michele Sonnessa

Field Summary
 
Fields inherited from class jas.statistics.db.Table
PK_IDENTITY, PK_NOTHING, PK_SIMULATION_TIME
 
Constructor Summary
CollectionTable(java.lang.String name, boolean appendable, java.util.Collection collection)
           
CollectionTable(java.lang.String name, boolean appendable, int pkMode, java.util.Collection collection)
           
 
Method Summary
 void addDoubleColumn(java.lang.String name)
          Add a double column, which is able to get values from a double source.
 void addDoubleColumn(java.lang.String name, int valueId)
          Add a double column, which is able to get values from a double source.
 void addFloatColumn(java.lang.String name)
          Add a float column, which is able to get values from a float source.
 void addFloatColumn(java.lang.String name, int valueId)
          Add a float column, which is able to get values from a float source.
 void addIntColumn(java.lang.String name)
          Add an integer column, which is able to get values from an integer source.
 void addIntColumn(java.lang.String name, int valueId)
          Add an integer column, which is able to get values from an integer source.
 void addLongColumn(java.lang.String name)
          Add a long column, which is able to get values from a long source.
 void addLongColumn(java.lang.String name, int valueId)
          Add a long column, which is able to get values from a long source.
 void addStringColumn(java.lang.String name, int size)
          Add a string column, which is able to get values from a string source.
 void addStringColumn(java.lang.String name, int size, int valueId)
          Add a string column, which is able to get values from a string source.
 java.util.Collection getCollection()
           
 void setCollection(java.util.Collection collection)
           
 
Methods inherited from class jas.statistics.db.Table
addColumn, addDoubleColumn, addDoubleColumn, addFloatColumn, addFloatColumn, addIntColumn, addIntColumn, addLongColumn, addLongColumn, addStringColumn, addStringColumn, generateCreationStatement, getColumn, getColumns, getDb, getName, performAction, setDb, update
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CollectionTable

public CollectionTable(java.lang.String name,
                       boolean appendable,
                       java.util.Collection collection)
Parameters:
name -
appendable -

CollectionTable

public CollectionTable(java.lang.String name,
                       boolean appendable,
                       int pkMode,
                       java.util.Collection collection)
Parameters:
name -
appendable -
Method Detail

addDoubleColumn

public void addDoubleColumn(java.lang.String name)
Add a double column, which is able to get values from a double source.

Parameters:
name - The unique name name of the column.

addDoubleColumn

public void addDoubleColumn(java.lang.String name,
                            int valueId)
Add a double column, which is able to get values from a double source.

Parameters:
name - The unique name name of the column.
source - An IDoubleSource object, from which to retrieve values.
valueId - The valueId for the double source.

addFloatColumn

public void addFloatColumn(java.lang.String name)
Add a float column, which is able to get values from a float source.

Parameters:
name - The unique name name of the column.

addFloatColumn

public void addFloatColumn(java.lang.String name,
                           int valueId)
Add a float column, which is able to get values from a float source.

Parameters:
name - The unique name name of the column.
valueId - The valueId for the float source.

addIntColumn

public void addIntColumn(java.lang.String name)
Add an integer column, which is able to get values from an integer source.

Parameters:
name - The unique name name of the column.

addIntColumn

public void addIntColumn(java.lang.String name,
                         int valueId)
Add an integer column, which is able to get values from an integer source.

Parameters:
name - The unique name name of the column.
valueId - The valueId for the integer source.

addLongColumn

public void addLongColumn(java.lang.String name)
Add a long column, which is able to get values from a long source.

Parameters:
name - The unique name name of the column.
source - An ILongSource object, from which to retrieve values, using the default valueId.

addLongColumn

public void addLongColumn(java.lang.String name,
                          int valueId)
Add a long column, which is able to get values from a long source.

Parameters:
name - The unique name name of the column.
valueId - The valueId for the integer source.

addStringColumn

public void addStringColumn(java.lang.String name,
                            int size)
Add a string column, which is able to get values from a string source. It uses the default valueId for for the IStringSource.

Parameters:
name - The unique name name of the column.
size - The maximum allowed length of the String.

addStringColumn

public void addStringColumn(java.lang.String name,
                            int size,
                            int valueId)
Add a string column, which is able to get values from a string source.

Parameters:
name - The unique name name of the column.
size - The maximum allowed length of the String.
valueId - The valueId for the source string.

getCollection

public java.util.Collection getCollection()
Returns:

setCollection

public void setCollection(java.util.Collection collection)
Parameters:
collection -