Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_DataHolder), | intent(inout) | :: | dh | |||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_DataHolderValidate(dh, rc) ! ! !ARGUMENTS: type(ESMF_DataHolder), intent(inout) :: dh integer, intent(out), optional :: rc ! ! ! !DESCRIPTION: ! Validates that the {\tt dh} is internally consistent. ! The method returns an error code if problems are found. ! ! The arguments are: ! \begin{description} ! \item[dh] ! Specified {\tt ESMF\_DataHolder} object. ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI !------------------------------------------------------------------------------ ! Assume failure until success if (present(rc)) rc = ESMF_RC_NOT_IMPL ! Check init status of arguments ESMF_INIT_CHECK_SET_SHALLOW(ESMF_DataHolderGetInit, ESMF_DataHolderInit,dh) ! Return success if (present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_DataHolderValidate