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

org.nuiton.jaxx.runtime.resources.UIResourcesProviders Maven / Gradle / Ivy

The newest version!
package org.nuiton.jaxx.runtime.resources;

/*-
 * #%L
 * JAXX :: Runtime Spi
 * %%
 * Copyright (C) 2008 - 2024 Code Lutin, Ultreia.io
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

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

/**
 * Created by tchemit on 13/12/2017.
 *
 * @author Tony Chemit - [email protected]
 */
public class UIResourcesProviders {

    public static UIResourcesProviders INSTANCE;
    private final Set providers;

    private UIResourcesProviders() {
        providers = new HashSet<>();
        for (UIResourcesProvider componentInitializer : ServiceLoader.load(UIResourcesProvider.class)) {
            providers.add(componentInitializer);
        }
    }

    public static void load() {
        get().load0();
    }

    protected static UIResourcesProviders get() {
        if (INSTANCE == null) {
            INSTANCE = new UIResourcesProviders();
        }
        return INSTANCE;
    }

    private void load0() {
        for (UIResourcesProvider provider : providers) {
            try {
                provider.load();
            } catch (IOException e) {
                throw new IllegalStateException("Can't load ui resources", e);
            }
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy