package market.util;

/**
 * M_Docs_Cacher return instanse of this class to Downloader.
 * Creation date: (30.1.2000 “. 13:20:31)
 * @author: 
 */
public class M_Docs_Result {
	public String document;
	public byte status;
/**
 * M_Docs_Result constructor comment.
 */
public M_Docs_Result() {
	super();
}
/**
 * Insert the method's description here.
 * Creation date: (30.1.2000 “. 14:07:52)
 * @param doc java.lang.String
 * @param status byte
 */
public void set(String doc, byte status) {

	this.document = doc;
	this.status = status;	
}
/**
 * Returns a String that represents the value of this object.
 * @return a string representation of the receiver
 */
public String toString() {
	return this.document;
}
}

