Package com._1c.g5.v8.dt.compare.merge
Class MergeProblem
- java.lang.Object
-
- com._1c.g5.v8.dt.compare.merge.MergeProblem
-
- Direct Known Subclasses:
ExternalMergeToolProblem
,MergeValidationProblem
public class MergeProblem extends Object
A problem of merge.
-
-
Constructor Summary
Constructors Constructor Description MergeProblem(ComparisonNode node, String message)
Creates a new instance.MergeProblem(String message)
Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getMessage()
Returns the merge problem message.Long
getNodeId()
Returns the identifier of the node with the merge problem.
-
-
-
Constructor Detail
-
MergeProblem
public MergeProblem(String message)
Creates a new instance.- Parameters:
message
- the merge problem message, may benull
-
MergeProblem
public MergeProblem(ComparisonNode node, String message)
Creates a new instance.- Parameters:
node
- the comparison node, cannot benull
message
- the merge problem message, cannot benull
-
-