made few changes also adding test method

This commit is contained in:
-
2019-03-18 13:52:01 -06:00
parent 150933b22b
commit 9f5d9e24f5
9 changed files with 43 additions and 41 deletions
@@ -1,17 +1,24 @@
package edu.msudenver.tsp.website.forms;
public class Theorem {
private String theoremName ;
private String theoremName1 ;
private String theoremName2 ;
public String getTheoremName() {
return theoremName;
public String getTheoremName1() {
return theoremName1;
}
public void setTheoremName(String theoremName) {
this.theoremName = theoremName;
public void setTheoremName1(String theoremName) {
this.theoremName1 = theoremName;
}
public String getTheoremName2() {
return theoremName2;
}
public void setTheoremName2(String theoremName) {
this.theoremName2 = theoremName;
}