package market.util;

/**
 * Instance of this class make up LangTable.
 * Creation date: (12/28/99 3:28:31 PM)
 * @author: tin
 */
public class LangElement {
/**
 *	Contein LangKey
 */
	public short langKey;

/**
 *	Contein Lang short name
 */
	public String shortName;

/**
 *	Contein Lang full name
 */
	public String name;	
/**
 * LangElement constructor comment.
 */
public LangElement() {
	super();
}
}

