add method

Cell add(
  1. dynamic entry
)

Adds an entry to this cell.

Implementation

Cell add( entry ) {
	entries.add( entry );
	return this;
}