Lab 5

Frequently asked questions

Question: Should I include javadoc?
Answer: Yes.

Question: What should getNumberOfFrames return when repeat has been invoked?
Answer: The largest int value.

Question: The style checker complains about some of the code given to us. What should we do?
Answer: In ASCIImation, replace

public void repeat() throws UnsupportedOperationException
with
public void repeat()
and replace
catch (InterruptedException e) {}
with
catch (InterruptedException e)
{
   System.out.println("Something went wrong");
}