/** * DNARecord class. * @author cs416 * @version 1 */ public class DNARecord { // add private instance variables /** * This is the DNARecord constructor. * @param name The DNARecord holder's name * @param p The DNARecord holder's Profile */ public DNARecord(String name, Profile p) { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * Returns the Name for this DNARecord. * @return String */ public String getName() { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * Returns the Profile for this DNARecord. * @return Profile */ public Profile getProfile() { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * Returns the String format of a DNARecord. * @return String */ @Override public String toString() { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } }