Class: P4::OutputHandler
- Inherits:
-
Object
- Object
- P4::OutputHandler
- 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
Instance Method Summary collapse
- #outputBinary(binary) ⇒ Object
- #outputInfo(info) ⇒ Object
- #outputMessage(message) ⇒ Object
- #outputStat(stat) ⇒ Object
- #outputText(text) ⇒ Object
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() 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 |