/**
 * Definition of the ResultOrder object which is used in calling into the
 * ResultListConnector object.
 */

function ResultOrder(resultField, descending)
{
    this.resultField = resultField;
    this.descending  = descending;
}