KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > imageio > plugins > common > I18N


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
8 package com.sun.imageio.plugins.common;
9
10 public final class I18N extends I18NImpl {
11     private final static String JavaDoc resource_name = "iio-plugin.properties";
12     public static String JavaDoc getString(String JavaDoc key) {
13         return getString("com.sun.imageio.plugins.common.I18N", resource_name, key);
14     }
15 }
16
Popular Tags