Package org.apache.xmlgraphics.util
Class Service
java.lang.Object
org.apache.xmlgraphics.util.Service
This class handles looking up service providers on the class path.
It implements the system described in:
JAR
File Specification Under Service Provider. Note that this
interface is very similar to the one they describe which seems to
be missing in the JDK.
- Version:
- $Id$ Originally authored by Thomas DeWeese.
-
Method Summary
Modifier and TypeMethodDescriptionproviderNames
(Class<?> cls) Returns an iterator where each element should be the name of a class that implements the interface (or subclass the baseclass) described by cls.Returns an iterator where each element should implement the interface (or subclass the baseclass) described by cls.static Iterator
<?> Deprecated.use the type-safe methods providers(Class) or providerNames(Class) instead.
-
Method Details
-
providers
Returns an iterator where each element should implement the interface (or subclass the baseclass) described by cls. The Classes are found by searching the classpath for service files named: 'META-INF/services/<fully qualified classname> that list fully qualifted classnames of classes that implement the service files classes interface. These classes must have default constructors.- Parameters:
cls
- The class/interface to search for providers of.
-
providerNames
Returns an iterator where each element should be the name of a class that implements the interface (or subclass the baseclass) described by cls. The Classes are found by searching the classpath for service files named: 'META-INF/services/<fully qualified classname> that list fully qualified classnames of classes that implement the service files classes interface.- Parameters:
cls
- The class/interface to search for providers of.
-
providers
Deprecated.use the type-safe methods providers(Class) or providerNames(Class) instead.Returns an iterator where each element should implement the interface (or subclass the baseclass) described by cls. The Classes are found by searching the classpath for service files named: 'META-INF/services/<fully qualified classname> that list fully qualified classnames of classes that implement the service files classes interface. These classes must have default constructors if returnInstances is true. This is a deprecated, type-unsafe legacy method.- Parameters:
cls
- The class/interface to search for providers of.returnInstances
- true if the iterator should return instances rather than class names.
-