jidefx.scene.control.field.popup.PopupsResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jidefx-fields Show documentation
Show all versions of jidefx-fields Show documentation
JideFX Common Layer is a collection of several extend feature for JavaFX
The newest version!
/*
* @(#)PopupsResource.java 5/26/2013
*
* Copyright 2002 - 2013 JIDE Software Inc. All rights reserved.
*/
package jidefx.scene.control.field.popup;
import java.util.Locale;
import java.util.ResourceBundle;
public class PopupsResource {
static final String BASENAME = "jidefx.scene.control.field.popup.popups"; //NON-NLS
static final ResourceBundle RB = ResourceBundle.getBundle(BASENAME);
public static ResourceBundle getResourceBundle(Locale locale) {
return ResourceBundle.getBundle(BASENAME, locale);
}
}