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:58 $
10: * $State: Exp $
11: */
12: /**
13: * <p>
14: * This class has been deprecated. The source
15: * code has been moved to the samples/widget
16: * directory. These widgets are no longer
17: * supported.
18: *
19: * @deprecated as of JAI 1.1
20: */package javax.media.jai.widget;
21:
22: import com.sun.media.jai.util.PropertyUtil;
23:
24: class JaiI18N {
25: static String packageName = "javax.media.jai.widget";
26:
27: public static String getString(String key) {
28: return PropertyUtil.getString(packageName, key);
29: }
30: }
|