fixed stuff

This commit is contained in:
xrgman
2015-04-07 17:07:32 +02:00
parent 5ec737e707
commit 98af73b15e
42 changed files with 4384 additions and 152 deletions
+41
View File
@@ -0,0 +1,41 @@
package Agenda;
import java.io.Serializable;
public class Stage implements Serializable {
private static final long serialVersionUID = 1;
private String name;
private String description;
public Stage(String name, String description)
{
this.name = name;
this.description = description;
}
public String getName()
{
return this.name;
}
public String getDescription()
{
return this.description;
}
public void setDescription(String description)
{
this.description = description;
}
public void setName(String name)
{
this.name = name;
}
public String toString()
{
return name;
}
}