| org.geotools.factory.FactoryIteratorProvider
All known Subclasses: org.geotools.factory.DummyFactoryIteratorProvider,
FactoryIteratorProvider | public interface FactoryIteratorProvider (Code) | | Provides iterators over factories of specified categories. Users shall
an implementation
of this interface when the default lookup mechanism (namely scanning the content of the
META-INF/services/ category file in every JARs found on the classpath)
can not work. Such need may appear in the context of
restricting access to non-package directories as
META-INF . This constraint occurs on
the Eclipse platform for instance.
since: 2.4 version: $Id: FactoryIteratorProvider.java 24765 2007-03-15 03:50:56Z desruisseaux $ author: Martin Desruisseaux See Also: FactoryRegistry.addFactoryIteratorProvider See Also: CommonFactory.addFactoryIteratorProvider |
Method Summary | |
Iterator | iterator(Class category) Returns an iterator over all
of the specified category.
The
category argument should be the interface class to be implemented, not the
actual implementation.
Parameters: category - The category for the factories to be returned. |
iterator | Iterator iterator(Class category)(Code) | | Returns an iterator over all
of the specified category.
The
category argument should be the interface class to be implemented, not the
actual implementation.
Parameters: category - The category for the factories to be returned. Factories that implement the specified category. |
|
|