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

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