Commit f6facfa4 authored by Grzegorz Pietrusza's avatar Grzegorz Pietrusza

add tasktype

parent 74a4b062
package core;
/**
* Created by gpietrus on 20.02.2016.
*/
public enum TaskType {
WEB,
CRYPTO,
UNDEFINED
}
package objects;
import core.TaskType;
/**
* Created by gpietrus on 20.02.2016.
*/
public class Task {
private String name;
private int level;
private TaskType taskType;
public TaskType getTaskType() {
return taskType;
}
public void setTaskType(TaskType taskType) {
this.taskType = taskType;
}
public String getName() {
return name;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment