*/
private CellServerState fetchCellServerState() {
// Fetch the setup object from the Cell object. We send a message on
// the cell channel, so we must fetch that first.
ResponseMessage response = selectedCell.sendCellMessageAndWait(
new CellServerStateRequestMessage(selectedCell.getCellID()));
if (response == null) {
return null;
}
// We need to remove the position component first as a special case