*/
public void apply() {
// Figure out whether there already exists a server state for the
// component.
CellServerState cellServerState = editor.getCellServerState();
ContainerComponentServerState state = (ContainerComponentServerState)
cellServerState.getComponentServerState(ContainerComponentServerState.class);
if (state == null) {
state = new ContainerComponentServerState();
}
editor.addToUpdateList(state);
}