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.
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.
Source Code
function write_fielddata_tag(self,action)result(error)!< Write `<FieldData>`/`</FieldData>` start/end tag.class(xml_writer_abstract),intent(inout)::self!< Writer.character(*),intent(in)::action!< Action: **open** or **close** tag.integer(I4P)::error!< Error status.type(string)::action_!< Action string.action_=trim(adjustl(action));action_=action_%upper()select case(action_%chars())case('OPEN')call self%write_start_tag(name='FieldData')case('CLOSE')call self%write_end_tag(name='FieldData')endselecterror=self%errorendfunction write_fielddata_tag