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.



420
421
422
423
424
425
426
# File 'lib/P4.rb', line 420

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.



428
429
430
# File 'lib/P4.rb', line 428

def base
  @base
end

#hintObject (readonly)

Returns the value of attribute hint.



428
429
430
# File 'lib/P4.rb', line 428

def hint
  @hint
end

#mergedObject (readonly)

Returns the value of attribute merged.



428
429
430
# File 'lib/P4.rb', line 428

def merged
  @merged
end

#theirsObject (readonly)

Returns the value of attribute theirs.



428
429
430
# File 'lib/P4.rb', line 428

def theirs
  @theirs
end

#yoursObject (readonly)

Returns the value of attribute yours.



428
429
430
# File 'lib/P4.rb', line 428

def yours
  @yours
end