package doc.walkthru;

public interface Track {
  public String getName();
  public Performer getPerformer();
  public int durationInSeconds();
}