package wrapper; /**The interface ParamValueTableReader defines the read operation on the table that contains the name value pairs for parameters. */ public interface ParamValueTableReader { /**Returns the value of the specified name value pair. String: name of the parameter. Object: value of the parameter, is of type String. @throws ParameterNameException */ Object get(String name); }