Skip to content

Instantly share code, notes, and snippets.

@jpotts18
Created October 7, 2013 10:02
Show Gist options
  • Save jpotts18/6865424 to your computer and use it in GitHub Desktop.
Save jpotts18/6865424 to your computer and use it in GitHub Desktop.
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