Class: P4::ReportHandler

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

Instance Method Summary collapse

Instance Method Details

#outputBinary(binary) ⇒ Object



695
696
697
698
# File 'lib/P4.rb', line 695

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

#outputInfo(info) ⇒ Object



685
686
687
688
# File 'lib/P4.rb', line 685

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

#outputMessage(message) ⇒ Object



700
701
702
703
# File 'lib/P4.rb', line 700

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

#outputStat(stat) ⇒ Object



680
681
682
683
# File 'lib/P4.rb', line 680

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

#outputText(text) ⇒ Object



690
691
692
693
# File 'lib/P4.rb', line 690

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