public void open() {
CellServerState state = editor.getCellServerState();
CellComponentServerState compState = state.getComponentServerState(
ModelCellComponentServerState.class);
if (state != null) {
ModelCellComponentServerState mState =
(ModelCellComponentServerState) compState;
origState = (ModelCellComponentServerState) mState.clone(null);
deployedModelURLTF.setText(mState.getDeployedModelURL());
pickingEnabledCB.setSelected(mState.isPickingEnabled());
lightingEnabledCB.setSelected(mState.isLightingEnabled());
backfaceCullingEnabledCB.setSelected(mState.isBackfactCullingEnabled());
graphOptimizationEnabledCB.setSelected(mState.isGraphOptimizationEnabled());
transparencyCB.setSelectedItem(mState.getTransparencyMode());
checkDirty();
}
}