/** * Profile class. * @author cs416 * @version 1 */ public class Profile { //add private instance variables /** * Returns the Profile's AGAT count. * @return int */ public int getAGATCount() { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * Returns the Profile's AATG count. * @return int */ public int getAATGCount() { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * Returns the Profile's TATC count. * @return int */ public int getTATCCount() { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * sets the AGAT count. * @param count the new AGAT count */ public void setAGATCount(int count) { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * sets the AATG count. * @param count the new AATG count */ public void setAATGCount(int count) { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * Set the TATC count. * @param count the new TATC count */ public void setTATCCount(int count) { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * Returns true if object is equals to this Profile, otherwise returns false. * Uses the counts of agat, aatg, tatc for equality * @param o Object to {@link CompareToBuilder} * @return boolean */ @Override public boolean equals(Object o) { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } /** * Returns the String representation of a Profile. * @return String */ @Override public String toString() { throw new UnsupportedOperationException("TO BE IMPLEMENTED"); } }