package system.util;

/**
 * This is a structure that is used to store all temporary rw parameters
 * @author: Nikolai Rangelov
 */
 
public class rwParameters {
	public long wrKey; // word row key
	public long rwKey; // raw word key
	public String rwString; // raw word itself
	public short langKey; // language key
	public long rwCounts; // specific wordRow counts
	public short marketKey;
}

