Interpretation of Identifiers
lIn an inner class, the innermost meaning of an identifier applies.
class ClosedList
{
  String identity;
  class Cell
   {
   String identity;
   ...
   }
  ...
}
Inner identity
is used.
Outer identity
is used.