Reorganized Imports/Packages
This commit is contained in:
parent
cb9459f176
commit
3ee10482ab
721 changed files with 34873 additions and 33558 deletions
25
src/main/java/org/betterx/bclib/config/ConfigUI.java
Normal file
25
src/main/java/org/betterx/bclib/config/ConfigUI.java
Normal file
|
@ -0,0 +1,25 @@
|
|||
package org.betterx.bclib.config;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target({ElementType.FIELD})
|
||||
public @interface ConfigUI {
|
||||
/**
|
||||
* When {@code true}, this option will not generate UI-Elements.
|
||||
*/
|
||||
boolean hide() default false;
|
||||
|
||||
/**
|
||||
* When a Widget is generated for this option, it will be indented by this Value
|
||||
*/
|
||||
int leftPadding() default 0;
|
||||
|
||||
/**
|
||||
* When a Widget is generated for this option, it will be indented by this Value
|
||||
*/
|
||||
int topPadding() default 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue