/// <summary>
        /// Called when the cancel button is pressed.  This discards any changes made to the data objects.
        /// </summary>
        protected internal override void cancel()
        {
            StateMod_StreamEstimate_Coefficients coeff = null;
            int size = _data.Count;

            for (int i = 0; i < size; i++)
            {
                coeff = (StateMod_StreamEstimate_Coefficients)_data[i];
                coeff.restoreOriginal();
            }
        }