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

com.jidesoft.swing.Resource Maven / Gradle / Ivy

There is a newer version: 3.6.18
Show newest version
/*
 * @(#)Resource.java
 *
 * Copyright 2002 - 2004 JIDE Software Inc. All rights reserved.
 */
package com.jidesoft.swing;

import java.util.Locale;
import java.util.ResourceBundle;

class Resource {
    static final String BASENAME = "com.jidesoft.swing.swing";

    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