lab4lib
Interface ICell

All Known Implementing Classes:
UnidentifiedCellA, UnidentifiedCellB, UnidentifiedCellC

public interface ICell

An interface that all Cells implement

Author:
Carl G. Alphonce Created on: Sep 22, 2006

Method Summary
 void die()
          Creates the conditions under which a cell would die so that we can observe its death.
 void grow()
          Creates the conditions under which a cell can grow so that we can observe its growth.
 void stain(Color color)
          Stains the slide that the cell is on so that we can see it better.
 

Method Detail

grow

void grow()
Creates the conditions under which a cell can grow so that we can observe its growth.


stain

void stain(Color color)
Stains the slide that the cell is on so that we can see it better.

Parameters:
color - the color you would like to stain the cell to

die

void die()
Creates the conditions under which a cell would die so that we can observe its death.