Android Mobile Physical Therapy Exercise Documenter

com.communipatient.amptedapp.data
Class ExercisePlan

java.lang.Object
  extended by com.communipatient.amptedapp.data.ExercisePlan

public class ExercisePlan
extends java.lang.Object

The representation of an exercise plan.


Field Summary
protected  java.util.ArrayList<Exercise> exercises
          The array of exercises that are part of the plan.
private  int id
          The plan identifier.
private  java.lang.String mid
          The message identifier.
private  java.lang.String notes
          The notes for the entire plan.
private  java.lang.String password
          The message password.
private  java.lang.String url
          The URL for the exercise plan.
 
Constructor Summary
ExercisePlan()
          Initializes a new instance of the ExercisePlan class.
 
Method Summary
 java.util.ArrayList<Exercise> getExercises()
          Gets the array of exercises.
 int getId()
          Gets the plan identifier.
 java.lang.String getMid()
          Gets the mid.
 java.lang.String getNotes()
          Gets the exercise plan notes.
 java.lang.String getPassword()
          Gets the password.
 java.lang.String getUrl()
          Gets the message url.
 void setId(int id)
          Sets the plan identifier.
 void setMid(java.lang.String mid)
          Sets the mid.
 void setNotes(java.lang.String notes)
          Sets the exercise plan notes.
 void setPassword(java.lang.String password)
          Sets the password.
 void setUrl(java.lang.String url)
          Sets the message url.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

exercises

protected java.util.ArrayList<Exercise> exercises
The array of exercises that are part of the plan.


id

private int id
The plan identifier.


url

private java.lang.String url
The URL for the exercise plan.


mid

private java.lang.String mid
The message identifier.


password

private java.lang.String password
The message password.


notes

private java.lang.String notes
The notes for the entire plan.

Constructor Detail

ExercisePlan

public ExercisePlan()
Initializes a new instance of the ExercisePlan class.

Method Detail

getExercises

public java.util.ArrayList<Exercise> getExercises()
Gets the array of exercises.

Returns:
The exercises.

getId

public int getId()
Gets the plan identifier.

Returns:
The identifier.

setId

public void setId(int id)
Sets the plan identifier.

Parameters:
id - The identifier to set.

getUrl

public java.lang.String getUrl()
Gets the message url.

Returns:
The message url.

setUrl

public void setUrl(java.lang.String url)
Sets the message url.

Parameters:
url - The message url to set.

getMid

public java.lang.String getMid()
Gets the mid.

Returns:
The mid.

setMid

public void setMid(java.lang.String mid)
Sets the mid.

Parameters:
mid - The mid to set.

getPassword

public java.lang.String getPassword()
Gets the password.

Returns:
The password.

setPassword

public void setPassword(java.lang.String password)
Sets the password.

Parameters:
password - The password to set.

getNotes

public java.lang.String getNotes()
Gets the exercise plan notes.

Returns:
The notes.

setNotes

public void setNotes(java.lang.String notes)
Sets the exercise plan notes.

Parameters:
notes - The notes to set.

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