You might need to zoom in to see the TODO statements public
     You might need to zoom in to see the TODO statements  public FileFornatException(String attribute)  {//TODO Initialize attributes ArrayList and add//parameter to list//Points:/5}/**  * Adds string parameter to end of list of missing attributes.  *  * @param attribute  */public void addAttribute(String attribute)  {//TODO Add String parameter to attributes ArrayList//Points:/5} 
  
  Solution
Answer:
______
public FileFormatException(String attribute)
{
ArrayList<T> attributes= new ArrayList<T>();
attributes.add(\"attribute1\");
attributes.add(\"attribute2\");
attributes.add(\"attribute3\");
}
public void addAttribute(String attribute)
{
ArrayList<String> attributes= new ArrayList<String>();
}

