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

aQute.bnd.annotation.headers.BundleCategory Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.annotation.headers;

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

/**
 * The Bundle-Category header holds a comma-separated list of category names.
 * These categories are free form but there is a list on the
 * OSGi
 * Website
 * 

* All categories are merged together with any duplicates removed See * {@link About} */ @Retention(RetentionPolicy.CLASS) @Target({ ElementType.ANNOTATION_TYPE, ElementType.TYPE }) public @interface BundleCategory { /** * The list of categories on the * OSGi * Website */ Category[] value(); /** * Custom categories. */ String[] custom() default {}; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy