Package ghidra.framework.data
Interface CheckinHandler
-
- All Known Implementing Classes:
CheckInTask,DefaultCheckinHandler
public interface CheckinHandlerCheckinHandlerfacilitates application callbacks during the check-in of a DomainFile.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancreateKeepFile()Returns true if the system should create a keep file copy of the user's check-in file.java.lang.StringgetComment()Returns the check-in comment.booleankeepCheckedOut()Returns true if check-out state should be retained.
-
-
-
Method Detail
-
getComment
java.lang.String getComment() throws CancelledExceptionReturns the check-in comment.- Returns:
- the check-in comment
- Throws:
CancelledException- thrown if user cancels the check-in
-
keepCheckedOut
boolean keepCheckedOut() throws CancelledExceptionReturns true if check-out state should be retained.- Returns:
- true if check-out state should be retained
- Throws:
CancelledException- thrown if user cancels the check-in
-
createKeepFile
boolean createKeepFile() throws CancelledExceptionReturns true if the system should create a keep file copy of the user's check-in file.- Throws:
CancelledException- thrown if user cancels the check-in
-
-