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

org.jdesktop.beans.JavaBean Maven / Gradle / Ivy

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