org.apache.commons.scxml.model
Class Param

java.lang.Object
  extended byorg.apache.commons.scxml.model.Param

public class Param
extends Object

The class in this SCXML object model that corresponds to the <param> SCXML element.


Constructor Summary
Param()
          Default no-args constructor for Digester.
 
Method Summary
 String getExpr()
          Get the expression for this param value.
 String getName()
          Get the name for this param.
 void setExpr(String expr)
          Set the expression for this param value.
 void setName(String name)
          Set the name for this param.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Param

public Param()
Default no-args constructor for Digester.

Method Detail

getName

public final String getName()
Get the name for this param.

Returns:
String The param name.

setName

public final void setName(String name)
Set the name for this param.

Parameters:
name - The param name.

getExpr

public final String getExpr()
Get the expression for this param value.

Returns:
String The expression for this param value.

setExpr

public final void setExpr(String expr)
Set the expression for this param value.

Parameters:
expr - The expression for this param value.


Copyright © 2005-2006 The Apache Software Foundation. All Rights Reserved.