01: package org.libtiff.jai.util;
02:
03: /*
04: * XTIFF: eXtensible TIFF libraries for JAI.
05: *
06: * The contents of this file are subject to the JAVA ADVANCED IMAGING
07: * SAMPLE INPUT-OUTPUT CODECS AND WIDGET HANDLING SOURCE CODE License
08: * Version 1.0 (the "License"); You may not use this file except in
09: * compliance with the License. You may obtain a copy of the License at
10: * http://www.sun.com/software/imaging/JAI/index.html
11: *
12: * Software distributed under the License is distributed on an "AS IS"
13: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
14: * the License for the specific language governing rights and limitations
15: * under the License.
16: *
17: * The Original Code is JAVA ADVANCED IMAGING SAMPLE INPUT-OUTPUT CODECS
18: * AND WIDGET HANDLING SOURCE CODE.
19: * The Initial Developer of the Original Code is: Sun Microsystems, Inc..
20: * Portions created by: Niles Ritter
21: * are Copyright (C): Niles Ritter, GeoTIFF.org, 1999,2000.
22: * All Rights Reserved.
23: * Contributor(s): Niles Ritter
24: */
25:
26: public class JaiI18N {
27:
28: public static String getString(String key) {
29: return PropertyUtil.getString(key);
30: }
31: }
|