32 lines
907 B
Java
32 lines
907 B
Java
package dev.asdf00.confindibus.testclasses;
|
|
|
|
import dev.asdf00.confindibus.annotations.Configuration;
|
|
import dev.asdf00.confindibus.annotations.Section;
|
|
import dev.asdf00.confindibus.annotations.Value;
|
|
|
|
@Configuration(path = "test")
|
|
@Section(title = "sect")
|
|
public class SimpleTestConfig {
|
|
@Value(standard = "1")
|
|
public static byte BYTE;
|
|
@Value(standard = "1")
|
|
public static short SHORT;
|
|
@Value(standard = "1")
|
|
public static int INT;
|
|
@Value(standard = "1")
|
|
public static long LONG;
|
|
@Value(standard = "1.0")
|
|
public static float FLOAT;
|
|
@Value(standard = "1.0")
|
|
public static double DOUBLE;
|
|
@Value(standard = "true")
|
|
public static boolean BOOLEAN;
|
|
@Value(standard = "c")
|
|
public static char CHAR;
|
|
@Value(standard = "string")
|
|
public static String STRING;
|
|
|
|
@Section(title = "test inner section")
|
|
public static class SubSection { }
|
|
}
|