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

org.codehaus.enunciate.Facets Maven / Gradle / Ivy

There is a newer version: 1.31
Show newest version
package org.codehaus.enunciate;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Used to apply a set of facets to an API component.
 *
 * @author Ryan Heaton
 */
@Target (
  { ElementType.PARAMETER, ElementType.FIELD, ElementType.METHOD ,ElementType.TYPE, ElementType.PACKAGE, ElementType.ANNOTATION_TYPE }
)
@Retention (
  RetentionPolicy.RUNTIME
)
public @interface Facets {

  /**
   * The applicable facets.
   *
   * @return The applicable facets.
   */
  Facet[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy