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