
Chapter 8. Places and Place awareness 203
this.isPanelMember = (i == 1) ? true : false;
if (this.isPanelMember == true) {
m_btnQueueInOut.setEnabled(false);
m_chScope.select(1);
m_chScope.setVisible(true);
m_chScope.setEnabled(true);
m_chScope.repaint();
}
break;
default:
break;
}
}
8.5 Building the server-side
The server-side of the application is implemented as a Java application that acts
as a Sametime server application and activity. The application is responsible for:
Creating a Panel Discussion Place as a persistent Place
Registering itself as an activity
Responding to requests for and sent to the activity
Managing the question ...