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

io.github.palexdev.virtualizedfx.VFXResources Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2024 Parisi Alessandro - [email protected]
 * This file is part of VirtualizedFX (https://github.com/palexdev/VirtualizedFX)
 *
 * VirtualizedFX 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.
 *
 * VirtualizedFX 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with VirtualizedFX. If not, see .
 */

package io.github.palexdev.virtualizedfx;

import java.net.URL;

public class VFXResources {

    //================================================================================
    // Constructors
    //================================================================================
    private VFXResources() {}

    //================================================================================
    // Static Methods
    //================================================================================
    public static URL getResource(String name) {
        return VFXResources.class.getResource(name);
    }

    public static String loadResource(String name) {
        return getResource(name).toExternalForm();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy