package market.util;

/**
 * Instanse of this class is protokol betwin Parser and TXTSpliter
 * Creation date: (1/4/00 10:30:25 PM)
 * @author: tin
 */
public class TextElement implements java.io.Serializable {
	
	public String text;
	public long srcKey;
	public int langKey;

/**
 * TextElement constructor comment.
 */
public TextElement() {
	super();
}
/**
 * TextElement Constructor.<br> 
 * Creation date: (1/3/00 5:09:45 PM)
 * @param srcKey long
 * @param langKey int
 * @param text java.lang.String
 */
public TextElement( long srcKey, int langKey, String text ) {
 super();	
 this.langKey=langKey;
 this.srcKey=srcKey;
 this.text=text;	
}
}

