/*
* $RCSfile: JaiI18N.java,v $
*
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision: 1.1 $
* $Date: 2005/02/11 04:57:57 $
* $State: Exp $
*/
package javax.media.jai.util;
import com.sun.media.jai.util.PropertyUtil;
class JaiI18N {
static String packageName = "javax.media.jai.util";
public static String getString(String key) {
return PropertyUtil.getString(packageName, key);
}
}
|