My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
AndroidProjectCodeUpdate1  
Updated Nov 20, 2013 by brapi...@g.uafs.edu

Database folder inside src folder: Rubric.java

package Database;

public class Rubric {

//private variables int RubricID; int Total; String Criteria; int Score; String Comments;

//empty constructor public Rubric(){
}
//constructor public Rubric(int rubricID, String criteria, int score, String comments, int total){
this.RubricID = rubricID; this.Criteria = criteria; this.Score = score; this.Comments = comments; this.Total = total;
} //getting rubricID public int getRubricID(){
return this.RubricID;
}
//setting rubricID public void setRubricID(int rubricID){
this.RubricID = rubricID;
}
//getting criteria public String getCriteria(){
return this.Criteria;
}
//setting criteria public void setCriteria(String criteria){
this.Criteria = criteria;
}
//getting score
public int getScore(){
return this.Score;
}
//setting score public void setScore(int score){
this.Score = score;
}
//getting comments public String getComments(){
return this.Comments;
}
//setting comments public void setComments(String comments){
this.Comments = comments;
}
//getting total score public int getTotal(){
return this.Total;
}
//setting total score public void setTotal(int total){
this.Total = total;
}

}

Powered by Google Project Hosting