Update and rename Stage to Stage.java

This commit is contained in:
2015-02-24 17:00:42 +01:00
parent 46be84245b
commit 4fe2761ab1
2 changed files with 35 additions and 49 deletions
+35
View File
@@ -0,0 +1,35 @@
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;
}
}