All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.warnotte.obj2gui2.PROPERTY_button Maven / Gradle / Ivy

Go to download

This library aimed to generated swing interface base on introspection and annotation of DTOs

There is a newer version: 1.3.3
Show newest version
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