Interface SavablePanel.SaveContext
-
- Enclosing interface:
- SavablePanel
public static interface SavablePanel.SaveContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
saveFinishedSuccessfully()
void
saveFinishedWithError(java.lang.Throwable error)
void
saveStarted()
Call this if there are no validation errors, and you're going to start some background saving taskvoid
validationError(java.lang.String message)
-
-
-
Method Detail
-
validationError
void validationError(java.lang.String message)
-
saveStarted
void saveStarted()
Call this if there are no validation errors, and you're going to start some background saving task
-
saveFinishedSuccessfully
void saveFinishedSuccessfully()
-
saveFinishedWithError
void saveFinishedWithError(java.lang.Throwable error)
-
-