public Body(Body value) {
      /// Initiliaze the protected variables
      m_StillImageSensorConfigurationList = new StillImageSensorConfigurationList();
      m_StillImageSensorConfigurationList.setParent(this);

      /// Copy the values
      m_StillImageSensorConfigurationList = value.m_StillImageSensorConfigurationList;
      m_StillImageSensorConfigurationList.setParent(this);
      /// This code is currently not supported
    }
    public ReportStillImageSensorConfiguration.Body assign(Body value) {
      m_StillImageSensorConfigurationList = value.m_StillImageSensorConfigurationList;
      m_StillImageSensorConfigurationList.setParent(this);
      /// This code is currently not supported

      return this;
    }
 public Body() {
   m_StillImageSensorConfigurationList = new StillImageSensorConfigurationList();
   m_StillImageSensorConfigurationList.setParent(this);
 }