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



670
671
672
# File 'lib/P4.rb', line 670

def outputBinary(binary)
  REPORT
end

#outputInfo(info) ⇒ Object



662
663
664
# File 'lib/P4.rb', line 662

def outputInfo(info)
  REPORT
end

#outputMessage(message) ⇒ Object



674
675
676
# File 'lib/P4.rb', line 674

def outputMessage(message)
  REPORT
end

#outputStat(stat) ⇒ Object



658
659
660
# File 'lib/P4.rb', line 658

def outputStat(stat)
  REPORT
end

#outputText(text) ⇒ Object



666
667
668
# File 'lib/P4.rb', line 666

def outputText(text)
  REPORT
end