jas.io
Class ParametersBag

java.lang.Object
  extended by jas.io.ParametersBag

public class ParametersBag
extends java.lang.Object

A container for parameters. Each parameter consists of a ParameterField object.

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
static java.lang.String TAG_CHOOSE
          The XML tag of the parameter section node.
static java.lang.String TAG_FOLDER
          The XML tag of the root parameter node.
static java.lang.String TAG_NAME
          The XML tag of the parameter section node.
static java.lang.String TAG_PARAMETER
          The XML tag of the parameter section node.
static java.lang.String TAG_PARAMETER_DESCR
          The XML tag of the parameter section node.
static java.lang.String TAG_PARAMETER_MAX
          The XML tag of the parameter section node.
static java.lang.String TAG_PARAMETER_MIN
          The XML tag of the parameter section node.
static java.lang.String TAG_PARAMETER_ORDER
          The XML tag of the parameter section node.
static java.lang.String TAG_PARAMETER_TYPE
          The XML tag of the parameter section node.
static java.lang.String TAG_PARAMS
          The XML tag of the root parameter node.
static java.lang.String TAG_SECTION
          The XML tag of the parameter section node.
 
Constructor Summary
ParametersBag()
          Create a new parameter container.
ParametersBag(java.io.File descriptor)
          Create a parameter container from an XML file descriptor.
ParametersBag(java.lang.String filePath)
          Create a parameter container from an XML file descriptor.
 
Method Summary
 void addParameter(java.lang.String section, ParameterField field)
          Add a parameter into the given section with the given name.
 void addParameter(java.lang.String section, java.lang.String name, int parameterType)
          Add a parameter into the given section with the given name.
 void addSection(java.lang.String name)
           
 java.util.ArrayList getOrderedList(java.lang.String section)
           
 ParameterField getParameter(java.lang.String section, java.lang.String name)
          Add a parameter into the given section with the given name.
 void getParameters(java.lang.Object targetObject)
          Load parameters from the given target object.
 java.util.HashMap getSection(java.lang.String name)
           
 java.util.HashMap getSections()
           
 void loadParameters(java.io.File fromFile)
          Load parameters from the given file.
 void mapToObject(java.lang.Object o)
          Set the parameters value to the corresponding fields name of the Object.
 void mapToObject(java.lang.String sectionName, java.lang.Object o)
          Set the parameters value contained into a section to the corresponding fields name of the Object.
 void removeParameter(java.lang.String name)
          Remove a parameter from where it is.
 void removeParameter(java.lang.String section, java.lang.String name)
          Remove a parameter into the given section with the given name.
 void removeSection(java.lang.String name)
           
 void saveDescriptor(java.io.File toFile)
          Save parameters descriptor to the given file in XML format.
 void saveParameters(java.io.File toFile)
          Save parameters to the given file.
 void setField(ParameterField field, java.lang.String val)
           
 void setParameters(java.lang.String section, java.lang.Object o)
          Set the parameters value contained into a section to the corresponding fields name of the Object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TAG_CHOOSE

public static final java.lang.String TAG_CHOOSE
The XML tag of the parameter section node.

See Also:
Constant Field Values

TAG_FOLDER

public static final java.lang.String TAG_FOLDER
The XML tag of the root parameter node.

See Also:
Constant Field Values

TAG_NAME

public static final java.lang.String TAG_NAME
The XML tag of the parameter section node.

See Also:
Constant Field Values

TAG_PARAMETER

public static final java.lang.String TAG_PARAMETER
The XML tag of the parameter section node.

See Also:
Constant Field Values

TAG_PARAMETER_DESCR

public static final java.lang.String TAG_PARAMETER_DESCR
The XML tag of the parameter section node.

See Also:
Constant Field Values

TAG_PARAMETER_MAX

public static final java.lang.String TAG_PARAMETER_MAX
The XML tag of the parameter section node.

See Also:
Constant Field Values

TAG_PARAMETER_MIN

public static final java.lang.String TAG_PARAMETER_MIN
The XML tag of the parameter section node.

See Also:
Constant Field Values

TAG_PARAMETER_ORDER

public static final java.lang.String TAG_PARAMETER_ORDER
The XML tag of the parameter section node.

See Also:
Constant Field Values

TAG_PARAMETER_TYPE

public static final java.lang.String TAG_PARAMETER_TYPE
The XML tag of the parameter section node.

See Also:
Constant Field Values

TAG_PARAMS

public static final java.lang.String TAG_PARAMS
The XML tag of the root parameter node.

See Also:
Constant Field Values

TAG_SECTION

public static final java.lang.String TAG_SECTION
The XML tag of the parameter section node.

See Also:
Constant Field Values
Constructor Detail

ParametersBag

public ParametersBag()
Create a new parameter container.


ParametersBag

public ParametersBag(java.io.File descriptor)
Create a parameter container from an XML file descriptor.

Parameters:
descriptor - The source XML descriptor file.

ParametersBag

public ParametersBag(java.lang.String filePath)
Create a parameter container from an XML file descriptor.

Parameters:
filePath - The path of the XML descriptor file.
Method Detail

addParameter

public void addParameter(java.lang.String section,
                         ParameterField field)
Add a parameter into the given section with the given name.

Parameters:
section - The parameter section.
field - The ParameterField variable representing the parameter.

addParameter

public void addParameter(java.lang.String section,
                         java.lang.String name,
                         int parameterType)
Add a parameter into the given section with the given name.

Parameters:
section - The section for the parameter.
name - The parameter name.
parameterType - The parameter type.

addSection

public void addSection(java.lang.String name)

getOrderedList

public java.util.ArrayList getOrderedList(java.lang.String section)

getParameter

public ParameterField getParameter(java.lang.String section,
                                   java.lang.String name)
Add a parameter into the given section with the given name.

Parameters:
section - The parameter section.
name - The parameter name.
Returns:
The requested parameter field.

getParameters

public void getParameters(java.lang.Object targetObject)
Load parameters from the given target object.

Parameters:
targetObject - The object from which parameters have to be read.

getSection

public java.util.HashMap getSection(java.lang.String name)

getSections

public java.util.HashMap getSections()

loadParameters

public void loadParameters(java.io.File fromFile)
Load parameters from the given file. XML, CSV, XLS formats supported.

Parameters:
fromFile - The source XML file.

mapToObject

public void mapToObject(java.lang.Object o)
Set the parameters value to the corresponding fields name of the Object. WARNING: Also object's private values are modified.

Parameters:
o - The object to be attached to parameter bag.

mapToObject

public void mapToObject(java.lang.String sectionName,
                        java.lang.Object o)
Set the parameters value contained into a section to the corresponding fields name of the Object. WARNING: Also object's private values are modified.

Parameters:
sectionName - The section containing the values to be mapped on o.
o - The object to be mapped.

removeParameter

public void removeParameter(java.lang.String name)
Remove a parameter from where it is.

Parameters:
name - The name of the ParameterField variable representing the parameter.

removeParameter

public void removeParameter(java.lang.String section,
                            java.lang.String name)
Remove a parameter into the given section with the given name.

Parameters:
section - The parameter section.
name - The parameter name.

removeSection

public void removeSection(java.lang.String name)

saveDescriptor

public void saveDescriptor(java.io.File toFile)
Save parameters descriptor to the given file in XML format.

Parameters:
toFile - The target XML file.

saveParameters

public void saveParameters(java.io.File toFile)
Save parameters to the given file. XML, CSV formats supported.

Parameters:
toFile - The target XML file.

setField

public void setField(ParameterField field,
                     java.lang.String val)

setParameters

public void setParameters(java.lang.String section,
                          java.lang.Object o)
Set the parameters value contained into a section to the corresponding fields name of the Object. WARNING: Also object's private values are modified.

Parameters:
section - The parameter section.
o - The object to be updated.