
import objectdraw.*;
import java.awt.*;

/**
 * Write a description of EmptyWave here.
 * 
 * YOUR NAME
 * DATE
 */
public class EmptyWave implements WaveInterface {
    
    private Location l;    
    
    public EmptyWave(Location pt) {
        l = pt;
    }
    
    public Location getLocation() {
        return l;   
    }
    
    public double getWidth() {
        return 0;
    }
    
    public boolean isEmpty() {
        return true;   
    }
    
    public WaveInterface getRest() {
        return null;
    }
    
    public FilledOval getFirst() {
        return null;   
    }
    
}
