org.daisy.dotify.api.factory.Provider Maven / Gradle / Ivy
package org.daisy.dotify.api.factory;
import java.util.Collection;
/**
* Provides an interface for a collection of Factories.
*
* @param the type of Factories handled by this Provider
* @author Joel Håkansson
*/
public interface Provider {
/**
* Lists all Factories.
*
* @return returns a collection of Factories
*/
public Collection list();
}