Android Mobile Physical Therapy Exercise Documenter

com.communipatient.amptedapp.data
Class ExerciseModifier

java.lang.Object
  extended by com.communipatient.amptedapp.data.ExerciseModifier
All Implemented Interfaces:
java.io.Serializable

public class ExerciseModifier
extends java.lang.Object
implements java.io.Serializable

The representation of an exercise modifier.

See Also:
Serialized Form

Field Summary
protected  java.lang.String name
          The name of the exercise modifier.
private static long serialVersionUID
          The serial version UID.
protected  java.lang.String value
          The value for the exercise modifier.
 
Constructor Summary
ExerciseModifier()
          Initializes a new instance of the ExerciseModifier class with blank values.
ExerciseModifier(java.lang.String name, java.lang.String value)
          Initializes a new instance of the ExerciseModifier class.
 
Method Summary
 java.lang.String getName()
          Gets the name of the modifier.
 java.lang.String getValue()
          Gets the value of the modifier.
 void setName(java.lang.String name)
          Sets the name of the modifier.
 void setValue(java.lang.String value)
          Sets the value of the modifier.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
The serial version UID.

See Also:
Constant Field Values

name

protected java.lang.String name
The name of the exercise modifier.


value

protected java.lang.String value
The value for the exercise modifier.

Constructor Detail

ExerciseModifier

public ExerciseModifier()
Initializes a new instance of the ExerciseModifier class with blank values.


ExerciseModifier

public ExerciseModifier(java.lang.String name,
                        java.lang.String value)
Initializes a new instance of the ExerciseModifier class.

Parameters:
name - The name of the modifier.
value - The value for the modifier.
Method Detail

getName

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

Returns:
The name.

setName

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

Parameters:
name - The name to set.

getValue

public java.lang.String getValue()
Gets the value of the modifier.

Returns:
The value.

setValue

public void setValue(java.lang.String value)
Sets the value of the modifier.

Parameters:
value - The value to set.

Revision: 109 Generated on Sat Dec 10 07:00:03 UTC 2011