Class: P4::ReportHandler

Inherits:
OutputHandler show all
Defined in:
lib/P4.rb

Instance Method Summary collapse

Instance Method Details

#outputBinary(binary) ⇒ Object



579
580
581
582
# File 'lib/P4.rb', line 579

def outputBinary(binary)
  p "binary:", binary
  HANDLED
end

#outputInfo(info) ⇒ Object



569
570
571
572
# File 'lib/P4.rb', line 569

def outputInfo(info)
  p "info:", info
  HANDLED
end

#outputMessage(message) ⇒ Object



584
585
586
587
# File 'lib/P4.rb', line 584

def outputMessage(message)
  p "message:", message
  HANDLED
end

#outputStat(stat) ⇒ Object



564
565
566
567
# File 'lib/P4.rb', line 564

def outputStat(stat)
  p "stat:", stat
  HANDLED
end

#outputText(text) ⇒ Object



574
575
576
577
# File 'lib/P4.rb', line 574

def outputText(text)
  p "text:", text
  HANDLED
end