add print method for ms_graph_pager

This commit is contained in:
Hong Ooi 2021-05-03 09:33:04 +10:00
Родитель 1eebbb9fd3
Коммит 8e54902411
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -95,6 +95,14 @@ public=list(
has_data=function()
{
!is.null(private$next_value)
},
print=function(...)
{
cat("<Graph pager object>\n", sep="")
cat(" output:", self$output, "\n")
cat(" has data:", self$has_data(), "\n")
invisible(self)
}
),