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

org.glassfish.embed.StringHelper Maven / Gradle / Ivy


package org.glassfish.embed;

import com.sun.enterprise.universal.i18n.LocalStringsImpl;

/**
 *
 * @author bnevins
 */
public class StringHelper {
    public static String get(String index) {
        return strings.get(index);
    }

    public static String get(String index, Object... objs) {
        return strings.get(index, objs);
    }
    
    private static final LocalStringsImpl strings = new LocalStringsImpl(StringHelper.class);
    
    private StringHelper() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy