1 /*
2  * $RCSfile: JaiI18N.java,v $
3  *
4  * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
5  *
6  * Use is subject to license terms.
7  *
8  * $Revision: 1.1 $
9  * $Date: 2005/02/11 04:55:37 $
10  * $State: Exp $
11  */
12 package com.lightcrafts.media.jai.codecimpl;
13 import com.lightcrafts.media.jai.codecimpl.util.PropertyUtil;
14 
15 class JaiI18N {
16     static String packageName = "com.lightcrafts.media.jai.codecimpl";
17 
getString(String key)18     public static String getString(String key) {
19         return PropertyUtil.getString(packageName, key);
20     }
21 }
22