import objectdraw.*;

/**
 * Write a description of interface WaveInterface here.
 * 
 */

public interface WaveInterface {


    public Location getLocation();
    public double getWidth();
    public boolean isEmpty();
    public WaveInterface getRest();
    public FilledOval getFirst();
    
}
