blob: 1d376ada64628642f59fabc01d1a9eb11e75c0c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
package com.earth2me.essentials.yaml;
import java.io.Serializable;
public class General implements Serializable
{
private boolean debug = false;
private boolean updateCheck = true;
private String location = "null";
public General()
{
}
public boolean isDebug()
{
return debug;
}
public void setDebug(final boolean debug)
{
this.debug = debug;
}
public boolean isUpdateCheck()
{
return updateCheck;
}
public void setUpdateCheck(final boolean updateCheck)
{
this.updateCheck = updateCheck;
}
public boolean isStupid()
{
return true;
}
public void setStupid(final boolean bla)
{
return;
}
public String getLocation()
{
return location;
}
public void setLocation(final String location)
{
this.location = location;
}
}
|