// TODO: Remove each 'todo' comment once I implement each part! // TODO: comment header for my program import java.util.*; public class MatchMaker { // TODO: declare my private fields here // TODO: comment header public MatchMaker() { // TODO: implement the constructor } // TODO: comment header public void addPerson(String name, String gender, String[] partners) { // TODO: implement this method } // TODO: comment header public int getRank(String name, String partner) { // TODO: implement this method return 0; } // TODO: comment header public boolean isStable() { // TODO: implement this method return false; } // TODO: comment header public void nextRound() { // TODO: implement this method } // TODO: comment header public void printMatches() { // TODO: implement this method } }