Interface IEditorFilter

All Superinterfaces:
org.apache.wicket.util.io.IClusterable, Serializable

public interface IEditorFilter extends org.apache.wicket.util.io.IClusterable
Interface to intercept editor lifecycle events. Register instances of this type at the IEditor instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    postClose(Object object)
    Post-close lifecycle callback.
    Pre-close lifecycle callback.
  • Method Details

    • preClose

      Object preClose()
      Pre-close lifecycle callback. When the close() operation is cancelled (null is returned), the IEditor instance will throw an EditorException to notify the client.
      Returns:
      Context object that will be passed to postClose When null, the stop() operation is cancelled.
    • postClose

      void postClose(Object object)
      Post-close lifecycle callback.
      Parameters:
      object -