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

org.datafx.util.DataFXUtils Maven / Gradle / Ivy

There is a newer version: 8.0b5
Show newest version
package org.datafx.util;

import java.net.URL;

public class DataFXUtils {

    public static boolean canAccess(Class controllerClass, String resourceName) {
        try {
            URL url = controllerClass.getResource(resourceName);
            if (url == null) {
                return false;
            }
            return true;
        } catch (Exception e) {
        }
        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy