2015-09-17 09:48:10 +02:00
|
|
|
package com.gamingmesh.jobs.Gui;
|
2015-08-21 15:10:08 +02:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import com.gamingmesh.jobs.container.Job;
|
|
|
|
|
|
|
|
public class GuiInfoList {
|
|
|
|
|
2017-01-10 17:19:45 +01:00
|
|
|
String name;
|
|
|
|
List<Job> jobList = new ArrayList<Job>();
|
|
|
|
Boolean jobInfo = false;
|
|
|
|
int backButton = 27;
|
|
|
|
|
|
|
|
public GuiInfoList(String name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getbackButton() {
|
|
|
|
return this.backButton;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setbackButton(int backButton) {
|
|
|
|
this.backButton = backButton;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return this.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<Job> getJobList() {
|
|
|
|
return this.jobList;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setJobList(List<Job> jobList) {
|
|
|
|
this.jobList = jobList;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setJobInfo(Boolean jobInfo) {
|
|
|
|
this.jobInfo = jobInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Boolean isJobInfo() {
|
|
|
|
return this.jobInfo;
|
|
|
|
}
|
2015-08-21 15:10:08 +02:00
|
|
|
}
|