![JAR search and dependency download from the Maven repository](/logo.png)
org.jdesktop.beans.JavaBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swingx-all Show documentation
Show all versions of swingx-all Show documentation
Fork of the inactive swingx-all library
package org.jdesktop.beans;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Determines if the specified class is a Java Bean. This information is added to the manifest with
* the annotation processor.
*
* @author kschaefer
*/
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface JavaBean {
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.SOURCE)
@interface Property {
}
boolean value() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy