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

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy