Class: P4::MergeInfo
- Inherits:
-
Object
- Object
- P4::MergeInfo
- Defined in:
- lib/P4.rb
Overview
*****************************************************************************
-
P4::MergeInfo class
*****************************************************************************
Instance Attribute Summary collapse
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#hint ⇒ Object
readonly
Returns the value of attribute hint.
-
#merged ⇒ Object
readonly
Returns the value of attribute merged.
-
#theirs ⇒ Object
readonly
Returns the value of attribute theirs.
-
#yours ⇒ Object
readonly
Returns the value of attribute yours.
Instance Method Summary collapse
-
#initialize(base, yours, theirs, merged, hint) ⇒ MergeInfo
constructor
A new instance of MergeInfo.
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
#base ⇒ Object (readonly)
Returns the value of attribute base.
542 543 544 |
# File 'lib/P4.rb', line 542 def base @base end |
#hint ⇒ Object (readonly)
Returns the value of attribute hint.
542 543 544 |
# File 'lib/P4.rb', line 542 def hint @hint end |
#merged ⇒ Object (readonly)
Returns the value of attribute merged.
542 543 544 |
# File 'lib/P4.rb', line 542 def merged @merged end |
#theirs ⇒ Object (readonly)
Returns the value of attribute theirs.
542 543 544 |
# File 'lib/P4.rb', line 542 def theirs @theirs end |
#yours ⇒ Object (readonly)
Returns the value of attribute yours.
542 543 544 |
# File 'lib/P4.rb', line 542 def yours @yours end |