Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(in) | :: | this | |||
character(len=*), | intent(inout) | :: | rows(:) | |||
character(len=1), | intent(in), | optional | :: | space |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(in) | :: | this | |||
character(len=:), | intent(out), | allocatable | :: | header(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(in) | :: | this |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(in) | :: | this |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(in) | :: | this | |||
class(AbstractMeterNode), | intent(in), | target | :: | node | ||
character(len=:), | intent(out), | allocatable | :: | rows(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(in) | :: | this | |||
character(len=*), | intent(inout) | :: | separator(k) | |||
integer, | intent(in) | :: | k |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(in) | :: | this |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(inout) | :: | this | |||
character(len=1), | intent(in) | :: | separator |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(TextColumn), | intent(inout) | :: | this | |||
integer, | intent(in) | :: | column_width |
type, abstract :: TextColumn private integer :: column_width = 0 character(:), allocatable :: separator contains procedure :: set_width procedure :: get_width procedure(i_get_header), deferred :: get_header procedure(i_get_num_rows_header), deferred :: get_num_rows_header procedure(i_get_rows), deferred :: get_rows procedure :: center procedure :: set_separator procedure :: get_separator procedure :: get_num_rows_separator end type TextColumn