cz.zcu.fav.kiv.editor.beans
Class ConfigData

java.lang.Object
  extended by cz.zcu.fav.kiv.editor.beans.ConfigData

public class ConfigData
extends java.lang.Object

The ConfigData class represents main structure containing the list of parameter sections and lists of predefined type values.

Version:
1.0, 05/2007
Author:
Marta Vaclavikova

Constructor Summary
ConfigData()
           
 
Method Summary
 void clearValues()
          Clear values (sets default values) of all sections.
 java.util.Map<java.lang.String,Parameter> getParameterList()
           
 java.util.Map<java.lang.String,Property> getPropertyList()
           
 java.util.List<Section> getSectionList()
           
 Parameter searchParameter(java.lang.String name)
          Search for an parameter with specified name.
 Property searchProperty(java.lang.String name)
          Search for a property with specified name.
 void setParameterList(java.util.Map<java.lang.String,Parameter> parameterList)
           
 void setPropertyList(java.util.Map<java.lang.String,Property> propertyList)
           
 void setSectionList(java.util.List<Section> sectionList)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConfigData

public ConfigData()
Method Detail

clearValues

public void clearValues()
Clear values (sets default values) of all sections.


searchParameter

public Parameter searchParameter(java.lang.String name)
Search for an parameter with specified name.

Parameters:
name - a name of serched parameter.
Returns:
the found parameter with specified name.

searchProperty

public Property searchProperty(java.lang.String name)
Search for a property with specified name.

Parameters:
name - a name of serched property.
Returns:
the found property with specified name.

getSectionList

public java.util.List<Section> getSectionList()

setSectionList

public void setSectionList(java.util.List<Section> sectionList)

getParameterList

public java.util.Map<java.lang.String,Parameter> getParameterList()

setParameterList

public void setParameterList(java.util.Map<java.lang.String,Parameter> parameterList)

getPropertyList

public java.util.Map<java.lang.String,Property> getPropertyList()

setPropertyList

public void setPropertyList(java.util.Map<java.lang.String,Property> propertyList)