Class: P4::MergeInfo

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

Overview

*****************************************************************************

  • P4::MergeInfo class

*****************************************************************************

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base, yours, theirs, merged, hint) ⇒ MergeInfo

Returns a new instance of MergeInfo.



534
535
536
537
538
539
540
# File 'lib/P4.rb', line 534

def initialize( base, yours, theirs, merged, hint )
  @base = base
  @yours = yours
  @theirs = theirs
  @merged = merged
  @hint = hint
end

Instance Attribute Details

#baseObject (readonly)

Returns the value of attribute base.



542
543
544
# File 'lib/P4.rb', line 542

def base
  @base
end

#hintObject (readonly)

Returns the value of attribute hint.



542
543
544
# File 'lib/P4.rb', line 542

def hint
  @hint
end

#mergedObject (readonly)

Returns the value of attribute merged.



542
543
544
# File 'lib/P4.rb', line 542

def merged
  @merged
end

#theirsObject (readonly)

Returns the value of attribute theirs.



542
543
544
# File 'lib/P4.rb', line 542

def theirs
  @theirs
end

#yoursObject (readonly)

Returns the value of attribute yours.



542
543
544
# File 'lib/P4.rb', line 542

def yours
  @yours
end