restore method

void restore ()
inherited

Restore this Measure to its original value before adapt was called.

Note that the adapt/restore mechanism only supports one cycle, i.e multiple adaptation followed by multiple restoration is not supported.

Implementation

void restore() {
  super.restore();
  this.frequency = _storedFrequency;
  this.duration = _storedDuration;
}