1 /*2 * @(#)I18N.java 1.2 03/12/19 16:54:003 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package com.sun.imageio.plugins.common;9 10 public final class I18N extends I18NImpl {11 private final static String resource_name = "iio-plugin.properties";12 public static String getString(String key) {13 return getString("com.sun.imageio.plugins.common.I18N", resource_name, key);14 }15 }16