Class: P4::Integration

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

Overview

***************************************************************************** P4::Integration class P4::Integration objects hold details about the integrations that have been performed on a particular revision. Used primarily with the P4::Revision class *****************************************************************************

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(how, file, srev, erev) ⇒ Integration

Returns a new instance of Integration.



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

def initialize( how, file, srev, erev )
  @how = how
  @file = file
  @srev = srev
  @erev = erev
end

Instance Attribute Details

#erevObject (readonly)

Returns the value of attribute erev.



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

def erev
  @erev
end

#fileObject (readonly)

Returns the value of attribute file.



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

def file
  @file
end

#howObject (readonly)

Returns the value of attribute how.



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

def how
  @how
end

#srevObject (readonly)

Returns the value of attribute srev.



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

def srev
  @srev
end