// Copyright 1996, David Neto
import java.awt.*;

public class Speed extends Object {
	MergeSortApp msa;

	public Speed(MergeSortApp msa) {
		this.msa = msa;
	}

	public synchronized int getDelay() {
		int theSpeed = msa.speedScrollbar.getValue();
		int theDelay = (10-theSpeed)*150+5;
		return theDelay;
	}
}
