MCPcopy Index your code
hub / github.com/cloudfoundry/cli / PrintPaginator

Method PrintPaginator

cf/terminal/ui.go:77–86  ·  view source on GitHub ↗
(rows []string, err error)

Source from the content-addressed store, hash-verified

75}
76
77func (ui *terminalUI) PrintPaginator(rows []string, err error) {
78 if err != nil {
79 ui.Failed(err.Error())
80 return
81 }
82
83 for _, row := range rows {
84 ui.Say(row)
85 }
86}
87
88func (ui *terminalUI) PrintCapturingNoOutput(message string, args ...interface{}) {
89 if len(args) == 0 {

Callers

nothing calls this directly

Calls 3

FailedMethod · 0.95
SayMethod · 0.95
ErrorMethod · 0.65

Tested by

no test coverage detected