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.



438
439
440
441
442
443
# File 'lib/P4.rb', line 438

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.



445
446
447
# File 'lib/P4.rb', line 445

def erev
  @erev
end

#fileObject (readonly)

Returns the value of attribute file.



445
446
447
# File 'lib/P4.rb', line 445

def file
  @file
end

#howObject (readonly)

Returns the value of attribute how.



445
446
447
# File 'lib/P4.rb', line 445

def how
  @how
end

#srevObject (readonly)

Returns the value of attribute srev.



445
446
447
# File 'lib/P4.rb', line 445

def srev
  @srev
end