org.jtestcase.core.model
Class ParamGroupInstance

java.lang.Object
  extended by org.jtestcase.core.model.ParamGroupInstance

public class ParamGroupInstance
extends java.lang.Object

Represents an param group from the JTestCaseWizard XML data.

Author:
Fausto Lelli $Id: ParamGroupInstance.java,v 1.1 2005/10/12 20:20:08 faustothegrey Exp $

Constructor Summary
ParamGroupInstance(java.lang.String name)
          Standard constructor
 
Method Summary
 void addParamGroupNestedInstance(ParamGroupInstance paramGroupInstance)
          Adds a param group instance to the list of nested param group instances
 void addParamInstance(ParamInstance paramInstance)
          Adds a param instance to the list of nested param instances
 java.lang.String getName()
          Gets the name of the param group
 java.util.List getParamGroupInstances()
          Gets the list of nested param group instances
 java.util.List getParamInstances()
          Gets the list of nested param instanes
 void setName(java.lang.String name)
          Sets the name of the param group
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ParamGroupInstance

public ParamGroupInstance(java.lang.String name)
Standard constructor

Parameters:
name - name of the param group
Method Detail

getName

public java.lang.String getName()
Gets the name of the param group

Returns:
the name of the param group

setName

public void setName(java.lang.String name)
Sets the name of the param group

Parameters:
name - the name of the param group

addParamInstance

public void addParamInstance(ParamInstance paramInstance)
Adds a param instance to the list of nested param instances

Parameters:
paramInstance - an param instance

getParamInstances

public java.util.List getParamInstances()
Gets the list of nested param instanes

Returns:
the list of nested param instances

addParamGroupNestedInstance

public void addParamGroupNestedInstance(ParamGroupInstance paramGroupInstance)
Adds a param group instance to the list of nested param group instances

Parameters:
paramGroupInstance - an param group instance

getParamGroupInstances

public java.util.List getParamGroupInstances()
Gets the list of nested param group instances

Returns:
the list of nested param group instances

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object
See Also:
Object.toString()