com.jidesoft.grouper.GroupResources 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)
/*
* @(#)GroupResources.java 5/19/2006
*
* Copyright 2002 - 2006 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.grouper;
import java.util.Locale;
import java.util.ResourceBundle;
public class GroupResources {
static final String BASENAME = "com.jidesoft.grouper.group";
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