blob: c70610a877e5f08c3f8d6fabf80c128d6d753ccd (
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
|
package cc.polyfrost.oneconfig.test;
import cc.polyfrost.oneconfig.config.annotations.Option;
import cc.polyfrost.oneconfig.config.data.OptionType;
public class TestPage {
@Option(
name = "Text field 1x",
subcategory = "Test",
type = OptionType.TEXT
)
public static String testDescription;
@Option(
name = "Text field 1x",
subcategory = "Test",
type = OptionType.TEXT
)
public static String testDescription2;
@Option(
name = "Text field 2x",
subcategory = "Test",
type = OptionType.TEXT,
size = 2
)
public static String testDescription3;
@Option(
name = "Secure text field",
subcategory = "Test",
type = OptionType.TEXT,
secure = true
)
public static String testDescription4;
@Option(
name = "Text box",
subcategory = "Test",
type = OptionType.TEXT,
multiLine = true
)
public static String testDescription5;
}
|