Examples of KittenCaptchaPanel


Examples of org.apache.wicket.extensions.captcha.kittens.KittenCaptchaPanel

   * @param parameters
   *            Page parameters
   */
  public HomePage(final PageParameters parameters)
  {
    add(captcha = new KittenCaptchaPanel("captcha", new Dimension(400, 200)));

    // In a real application, you'd check the kittens in a form
    add(new AjaxLink<Void>("checkKittens")
    {
      private static final long serialVersionUID = 642245961797905032L;
View Full Code Here

Examples of org.apache.wicket.extensions.captcha.kittens.KittenCaptchaPanel

   * @param parameters
   *            Page parameters
   */
  public HomePage(final PageParameters parameters)
  {
    add(captcha = new KittenCaptchaPanel("captcha", new Dimension(400, 200)));

    // In a real application, you'd check the kittens in a form
    add(new AjaxLink("checkKittens")
    {
      private static final long serialVersionUID = 642245961797905032L;
View Full Code Here

Examples of org.apache.wicket.extensions.captcha.kittens.KittenCaptchaPanel

   * @param parameters
   *            Page parameters
   */
  public HomePage(final PageParameters parameters)
  {
    add(captcha = new KittenCaptchaPanel("captcha", new Dimension(400, 200)));

    // In a real application, you'd check the kittens in a form
    add(new AjaxLink("checkKittens")
    {
      private static final long serialVersionUID = 642245961797905032L;
View Full Code Here

Examples of org.apache.wicket.extensions.captcha.kittens.KittenCaptchaPanel

   * @param parameters
   *            Page parameters
   */
  public HomePage(final PageParameters parameters)
  {
    add(captcha = new KittenCaptchaPanel("captcha", new Dimension(400, 200)));

    // In a real application, you'd check the kittens in a form
    add(new AjaxLink<Void>("checkKittens")
    {
      private static final long serialVersionUID = 642245961797905032L;
View Full Code Here

Examples of org.apache.wicket.extensions.captcha.kittens.KittenCaptchaPanel

   * @param parameters
   *            Page parameters
   */
  public HomePage(final PageParameters parameters)
  {
    add(captcha = new KittenCaptchaPanel("captcha", new Dimension(400, 200)));

    // In a real application, you'd check the kittens in a form
    add(new AjaxLink<Void>("checkKittens")
    {
      private static final long serialVersionUID = 642245961797905032L;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.