Class: P4::OutputHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/P4.rb

Overview

***************************************************************************** P4::OutputHandler class. Base class for all Handler classes that can be passed to P4::handler. *****************************************************************************

Direct Known Subclasses

ReportHandler

Instance Method Summary collapse

Instance Method Details

#outputBinary(binary) ⇒ Object



554
555
556
# File 'lib/P4.rb', line 554

def outputBinary(binary)
  REPORT
end

#outputInfo(info) ⇒ Object



546
547
548
# File 'lib/P4.rb', line 546

def outputInfo(info)
  REPORT
end

#outputMessage(message) ⇒ Object



558
559
560
# File 'lib/P4.rb', line 558

def outputMessage(message)
  REPORT
end

#outputStat(stat) ⇒ Object



542
543
544
# File 'lib/P4.rb', line 542

def outputStat(stat)
  REPORT
end

#outputText(text) ⇒ Object



550
551
552
# File 'lib/P4.rb', line 550

def outputText(text)
  REPORT
end