com.jidesoft.utils.FontFilesResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)FontFilesResource.java
*
* Copyright 2002 - 2004 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.utils;
import java.util.Locale;
import java.util.ResourceBundle;
class FontFilesResource {
static final String BASENAME = "fonts.fontfiles";
static final ResourceBundle RB = ResourceBundle.getBundle(BASENAME);
public static ResourceBundle getResourceBundle(Locale locale) {
return ResourceBundle.getBundle(BASENAME, locale);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy