![JAR search and dependency download from the Maven repository](/logo.png)
io.github.warnotte.obj2gui2.PROPERTY_button Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obj2gui2 Show documentation
Show all versions of obj2gui2 Show documentation
This library aimed to generated swing interface base on introspection and annotation of DTOs
package io.github.warnotte.obj2gui2;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
* @author Warnotte Renaud
*
*/
@Documented
@Retention(RUNTIME)
@Target(ElementType.FIELD)
public @interface PROPERTY_button {
String method_name() default "toString";
String text() default "";
String toolTipText() default "";
boolean threadedMethod() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy