Class Parameter<T>

java.lang.Object
de.tsl2.nano.action.Parameter<T>
All Implemented Interfaces:
Serializable

public class Parameter<T> extends Object implements Serializable
Version:
$Revision$
Author:
Tom
See Also:
  • Constructor Details

    • Parameter

      public Parameter()
      constructor
    • Parameter

      public Parameter(String name, IConstraint<T> constraint, T value)
      constructor
      Parameters:
      name -
      constraint -
      value -
  • Method Details

    • getName

      public String getName()
      Returns:
      Returns the name.
    • setName

      public void setName(String name)
      Parameters:
      name - The name to set.
    • getConstraint

      public IConstraint<T> getConstraint()
      Returns:
      Returns the constraint.
    • setConstraint

      public void setConstraint(IConstraint<T> constraint)
      Parameters:
      constraint - The constraint to set.
    • getValue

      public T getValue()
      Returns:
      Returns the value.
    • setValue

      public void setValue(T value)
      Parameters:
      value - The value to set.
    • toString

      public String toString()
      Overrides:
      toString in class Object