package doc.walkthru;

import java.util.List;

public interface Artist extends Performer {
  /**
   * @return the groups this artist is a member of
   */
  public List<Group> getGroups();
}

