Uploaded image for project: 'Wicket'
  1. Wicket
  2. WICKET-3733

org/apache/wicket/util/tester/apps_4/EmailPage Form wrong generic type

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • 1.5-RC4
    • 1.5-RC5
    • wicket
    • None
    • all

    Description

      The generic type parameter for the Form in EmailPage class should be EmailPage.
      Change:
      Form<Void> form = new Form<Void>("form");
      form.setDefaultModel(new CompoundPropertyModel<EmailPage>(this));
      to:
      Form<Void> form = new Form<EmailPage>("form");
      form.setDefaultModel(new CompoundPropertyModel<EmailPage>(this));

      Attachments

        Activity

          People

            mgrigorov Martin Tzvetanov Grigorov
            emberson Richard Emberson
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: