Created
October 7, 2013 10:02
-
-
Save jpotts18/6865424 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package me.jeffpotter.generaldietitian.models; | |
/** | |
* User: jpotts | |
* Date: 8/27/13 | |
* Time: 3:10 PM | |
*/ | |
public class ReportVariable { | |
String description; | |
int value; | |
public String getDescription() { | |
return description; | |
} | |
public void setDescription(String description) { | |
this.description = description; | |
} | |
public int getValue() { | |
return value; | |
} | |
public void setValue(int value) { | |
this.value = value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment