Package org.tigris.subversion.javahl
Class ConflictDescriptor
- java.lang.Object
-
- org.tigris.subversion.javahl.ConflictDescriptor
-
public class ConflictDescriptor extends java.lang.ObjectThe description of a merge conflict, encountered during merge/update/switch operations.- Since:
- 1.5
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classConflictDescriptor.ActionPoor man's enum forsvn_wc_conflict_action_t.classConflictDescriptor.KindPoor man's enum forsvn_wc_conflict_kind_t.classConflictDescriptor.ReasonPoor man's enum forsvn_wc_conflict_reason_t.
-
Constructor Summary
Constructors Constructor Description ConflictDescriptor(ConflictDescriptor aDesc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAction()java.lang.StringgetBasePath()intgetKind()java.lang.StringgetMergedPath()java.lang.StringgetMIMEType()java.lang.StringgetMyPath()intgetNodeKind()intgetOperation()java.lang.StringgetPath()java.lang.StringgetPropertyName()intgetReason()ConflictVersiongetSrcLeftVersion()ConflictVersiongetSrcRightVersion()java.lang.StringgetTheirPath()booleanisBinary()
-
-
-
Constructor Detail
-
ConflictDescriptor
public ConflictDescriptor(ConflictDescriptor aDesc)
-
-
Method Detail
-
getPath
public java.lang.String getPath()
-
getKind
public int getKind()
-
getNodeKind
public int getNodeKind()
- See Also:
NodeKind
-
getPropertyName
public java.lang.String getPropertyName()
-
isBinary
public boolean isBinary()
-
getMIMEType
public java.lang.String getMIMEType()
-
getAction
public int getAction()
-
getReason
public int getReason()
-
getBasePath
public java.lang.String getBasePath()
-
getTheirPath
public java.lang.String getTheirPath()
-
getMyPath
public java.lang.String getMyPath()
-
getMergedPath
public java.lang.String getMergedPath()
-
getOperation
public int getOperation()
-
getSrcLeftVersion
public ConflictVersion getSrcLeftVersion()
-
getSrcRightVersion
public ConflictVersion getSrcRightVersion()
-
-