Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | subtitle |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
SUBROUTINE writeSubtitle(subtitle)
! SUBROUTINE INFORMATION:
! AUTHOR Jason Glazer
! DATE WRITTEN November 2003
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Insert a subtitle into the current report
IMPLICIT NONE
! SUBROUTINE ARGUMENT DEFINITIONS:
CHARACTER(len=*),INTENT(IN) :: subtitle
! SUBROUTINE PARAMETER DEFINITIONS:
CHARACTER(len=*), PARAMETER :: fmta="(A)"
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
INTEGER :: iStyle
DO iStyle = 1, numStyles
SELECT CASE (TableStyle(iStyle))
CASE (tableStyleComma,tableStyleTab,tableStyleFixed)
WRITE(TabularOutputFile(iStyle),fmta) TRIM(subtitle)
WRITE(TabularOutputFile(iStyle),fmta) ''
CASE (tableStyleHTML)
WRITE(TabularOutputFile(iStyle),fmta) '<b>'// TRIM(subtitle) // '</b><br><br>'
WRITE(TabularOutputFile(iStyle),fmta) '<!-- FullName:' // TRIM(activeReportName) //'_' // &
TRIM(activeForName) //'_' // TRIM(subtitle) // '-->'
CASE (tableStyleXML)
!save the active subtable name for the XML reporting
activeSubTableName = subtitle
!no other output is needed since writeTable uses the subtable name for each record.
END SELECT
END DO
END SUBROUTINE WriteSubtitle