Package net.sourceforge.jwbf.mediawiki.actions.editing

Examples of net.sourceforge.jwbf.mediawiki.actions.editing.FileUpload


      ProcessException {

    File f = new File(fileName);

    SimpleFile a = new SimpleFile(f.getName(), fileName);
    performAction(new FileUpload(a, this));
   
   

  }
View Full Code Here


   * @see FileUpload
   * TODO exception missing
   */
  public void uploadFile(SimpleFile file) throws ActionException,
      ProcessException {
    performAction(new FileUpload(file, this));
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.jwbf.mediawiki.actions.editing.FileUpload

Copyright © 2018 www.massapicom. 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.