org.controlsfx.DialogResources Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjfx-dialogs Show documentation
Show all versions of openjfx-dialogs Show documentation
Generic Sampler Support for JavaFX Control libraries
package org.controlsfx;
import java.util.ResourceBundle;
public class DialogResources {
private static final String BASE_NAME = "com/sun/javafx/scene/control/skin/resources/dialog";
private DialogResources() {
// no-op
}
public static String getString(String key) {
return ResourceBundle.getBundle(BASE_NAME).getString(key);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy