282283284285286287288289290291292
if (TYPE_CALENDAR.equals(type)) { basePanel = new CalendarPanel(CHILD_ID); } else if (TYPE_RECORDINGS.equals(type)) { basePanel = new RecordingsPanel(CHILD_ID); } else { basePanel = new OmDashboardPanel(CHILD_ID); } break; default: break; }
283284285286287288289290291292293