aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/test/TestPage.java
blob: 66deed88eb07446206ed358ac6ffd33e9a431a9f (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 io.polyfrost.oneconfig.test;

import io.polyfrost.oneconfig.config.annotations.Option;
import io.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;
}