01: /*
02: * $RCSfile: JaiI18N.java,v $
03: *
04: * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
05: *
06: * Use is subject to license terms.
07: *
08: * $Revision: 1.1 $
09: * $Date: 2005/02/11 04:57:50 $
10: * $State: Exp $
11: */
12: package javax.media.jai.remote;
13:
14: import com.sun.media.jai.util.PropertyUtil;
15:
16: class JaiI18N {
17: static String packageName = "javax.media.jai.remote";
18:
19: public static String getString(String key) {
20: return PropertyUtil.getString(packageName, key);
21: }
22: }
|