Interface ConflictResolverCallback
-
- All Superinterfaces:
java.util.EventListener
public interface ConflictResolverCallback extends java.util.EventListenerThe callback API used to handle conflicts encountered during merge/update/switch operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConflictResultresolve(ConflictDescriptor descrip)The callback method invoked for each conflict during a merge/update/switch operation.
-
-
-
Method Detail
-
resolve
ConflictResult resolve(ConflictDescriptor descrip) throws SubversionException
The callback method invoked for each conflict during a merge/update/switch operation. NOTE: The files that are potentially passed in the ConflictDescriptor are in repository-normal format (LF line endings and contracted keywords).- Parameters:
descrip- A description of the conflict.- Returns:
- The result of any conflict resolution, from the
ConflictResultenum. - Throws:
SubversionException- If an error occurs.
-
-