hoi
This commit is contained in:
xrgman
2015-04-08 14:03:58 +02:00
parent 98af73b15e
commit 7c28dd3a16
29 changed files with 824 additions and 174 deletions
+41
View File
@@ -0,0 +1,41 @@
package Agenda;
import java.io.Serializable;
public class AgendaStage implements Serializable {
private static final long serialVersionUID = 1;
private String name;
private String description;
public AgendaStage(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;
}
}