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

org.openfact.theme.ThemeProvider Maven / Gradle / Ivy

The newest version!
package org.openfact.theme;

import java.io.IOException;
import java.util.Set;

public interface ThemeProvider {

    int getProviderPriority();

    Theme getTheme(String name, Theme.Type type) throws IOException;

    Set nameSet(Theme.Type type);

    boolean hasTheme(String name, Theme.Type type);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy