You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by Apache Wiki <wi...@apache.org> on 2008/07/26 02:10:05 UTC

[Struts Wiki] Update of "ActionForm" by Thiago

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification.

The following page has been changed by Thiago:
http://wiki.apache.org/struts/ActionForm

New page:
import org.apache.struts.upload.FormFile;

    public class MyActionForm extends ActionForm {

       private FormFile myFile;

       public void setMyFile(FormFile myFile) {
           this.myFile = myFile;
       }

       public FormFile getMyFile() {
           return myFile;
       }
    }