Example #1
0
 CellInfo _getCellInfo() {
   CellInfo info = new CellInfo();
   info.setCellName(getCellName());
   info.setDomainName(getCellDomainName());
   info.setCellType(getCellType());
   info.setCreationTime(_creationTime);
   try {
     info.setCellVersion(_cell.getCellVersion());
   } catch (Exception e) {
   }
   try {
     info.setPrivateInfo(_cell.getInfo());
   } catch (Exception e) {
     info.setPrivateInfo("Not yet/No more available\n");
   }
   try {
     info.setShortInfo(_cell.toString());
   } catch (Exception e) {
     info.setShortInfo("Not yet/No more available");
   }
   info.setCellClass(_cellClass);
   try {
     info.setEventQueueSize(getEventQueueSize());
     info.setState(_state);
     info.setThreadCount(_threads.activeCount());
   } catch (Exception e) {
     info.setEventQueueSize(0);
     info.setState(0);
     info.setThreadCount(0);
   }
   return info;
 }