if (this.children.containsKey(cellName)) {
return children.get(cellName);
}
/* Call the implementation to create the cell */
CellDelegate cellDelegate = this.delegate.createCellDelegate(cellName);
WFSCell cell = new WFSCell(this.wfsRef.get(), cellName, this, cellDelegate);
this.children.put(cellName, cell);
/* Fire events to indicate a new cell has been added */
this.wfsRef.get().fireCellChildrenAdded(this.getAssociatedCell());