public void setInputState(@Nullable CloudDebugProcessState inputState) {
   myInputState = inputState;
   if (myInputState != null) {
     myElysiumProjectId.setText(myInputState.getProjectName());
   }
 }
 private boolean isContinued() {
   CloudDebugProcessState state = myWireup.getInputState();
   return state != null && state.getCurrentServerBreakpointList().size() > 0;
 }