Interface WizardPage

  • All Superinterfaces:
    com.google.gwt.user.client.ui.IsWidget

    public interface WizardPage
    extends com.google.gwt.user.client.ui.IsWidget
    A page for a Wizard
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getTitle()
      Page title
      void initialise()
      Initialise the page with things that don't change between page visits
      void isComplete​(org.uberfire.client.callbacks.Callback<Boolean> callback)
      Is the page; i.e. has all the necessary information been captured.
      void prepareView()
      Prepare the page before it is displayed with things that can change between page visits
      • Methods inherited from interface com.google.gwt.user.client.ui.IsWidget

        asWidget
    • Method Detail

      • getTitle

        String getTitle()
        Page title
        Returns:
      • isComplete

        void isComplete​(org.uberfire.client.callbacks.Callback<Boolean> callback)
        Is the page; i.e. has all the necessary information been captured. What constitutes necessary data is up to the Wizard implementation, but a login page might consider the User ID and Password as necessary.
        Parameters:
        callback - True if the page is complete
      • initialise

        void initialise()
        Initialise the page with things that don't change between page visits
      • prepareView

        void prepareView()
        Prepare the page before it is displayed with things that can change between page visits