Package org.wicketstuff.html5.fileapi

Source Code of org.wicketstuff.html5.fileapi.TestPage

package org.wicketstuff.html5.fileapi;

import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.upload.FileUploadField;

public class TestPage extends WebPage
{
  private static final long serialVersionUID = -8189892371317106568L;

  private final Form<Void> form;
  private final FileUploadField field;

  public TestPage()
  {
    form = new Form<Void>("form");
    add(form);

    field = new FileUploadField("field");
    form.add(field);
  }

  public Form<Void> getForm()
  {
    return form;
  }

  public FileUploadField getField()
  {
    return field;
  }
}
TOP

Related Classes of org.wicketstuff.html5.fileapi.TestPage

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.