blob: 15ee17e08815076f399da3dba383fca8018d9c57 [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.annotation;
2
3import java.lang.annotation.*;
4
5/**
6 * This type is provided for convenience because it is the default. A change
7 * in a provider type (that is all except Consumer types) can be changed with
8 * only a minor update to the package API version number.
9 *
10 * This interface is similar to the Eclipse @noextend and @noimplement annotations.
11 *
12 *
13 *
14 */
15@Retention(RetentionPolicy.CLASS)
16@Target(ElementType.TYPE)
17public @interface ProviderType {
18
19}