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

aQute.bnd.annotation.spi.ServiceProviders Maven / Gradle / Ivy

The newest version!
package aQute.bnd.annotation.spi;

import static java.lang.annotation.ElementType.PACKAGE;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.CLASS;

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

@Retention(CLASS)
@Target({
	PACKAGE, TYPE
})
public @interface ServiceProviders {
	ServiceProvider[] value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy