package market.util;

/**
 * Instanse of this class is protokol betwin TXTSpliter and WrProcesor
 * Creation date: (12/27/99 9:47:13 PM)
 * @author: tin
 */
public class WordRowElement implements java.io.Serializable {
	public long srcKey;
	public int langKey;
	public String wrString;
	public int wrCount;
/**
 * WordRowElement constructor comment.
 */
public WordRowElement() {
	super();
}
/**
 * WordRowElement Constructor 
 * Creation date: (1/3/00 5:09:45 PM)
 * @param langKey int
 * @param srcKey long
 * @param wrCount int
 * @param wrValue java.lang.String
 */
public WordRowElement(int langKey, long srcKey, int wrCount, String wrString) {
	super();
	this.langKey = langKey;
	this.srcKey = srcKey;
	this.wrCount = wrCount;
	this.wrString = wrString;
}
}

