package market.MDVServer;

import java.io.IOException;
import market.util.text.*;

/**
 * Interface for MDVServer class. needed for the direct <br>
 * server invocation of the servlet by the marketServlet <br>
 * Creation date: (3.5.00 17:05:59) <br>
 * @author: lex <br>
 */
public interface MDVInterFace {
/**
 * representing the same method  from MDVServer <br>
 * Creation date: (5.5.00 11:39:23) <br>
 * @return boolean <br>
 * @param rws market.MDVServer.WordElement[] <br>
 * @exception java.io.IOException The exception description. <br>
 */
boolean mdvProcInfo(WordElement[] rws) throws java.io.IOException;
/**
 * representing the same method  from MDVServer <br>
 * Creation date: (4.5.00 0:19:22) <br>
 * @param marketKey int <br>
 */
void mdvSetMarketKey(int marketKey);
}

