cs015.SP
Interface SnowEyes

All Known Implementing Classes:
RoundEyes

public interface SnowEyes

This is a generic interface for different classes of SnowPerson's eyes.

Author:
ng

Method Summary
 void Blink()
          This method will make both eyes close and open.
 void Close()
          This method closes the eyes
 void Open()
          This method opens the eyes.
 void StartAnimate()
          This method should start some sort of the animation of the eyes, like making them blink at regular intervals.
 void Wink()
          This method will make one of the eyes close and open for a while.
 

Method Detail

Wink

public void Wink()
This method will make one of the eyes close and open for a while.


Blink

public void Blink()
This method will make both eyes close and open.


Open

public void Open()
This method opens the eyes.


Close

public void Close()
This method closes the eyes


StartAnimate

public void StartAnimate()
This method should start some sort of the animation of the eyes, like making them blink at regular intervals.