Package net.sourceforge.jwbf.mediawiki.contentRep

Examples of net.sourceforge.jwbf.mediawiki.contentRep.SimpleFile


   * @param bot a
   * @throws ActionException on problems with file
   * @throws VersionException on wrong MediaWiki version
   */
  public FileUpload(MediaWikiBot bot, String filename) throws ActionException, VersionException {
    this(new SimpleFile(filename), bot);
  }
View Full Code Here


  public final void uploadFile(final String fileName) throws ActionException,
      ProcessException {

    File f = new File(fileName);

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

  }
View Full Code Here

TOP

Related Classes of net.sourceforge.jwbf.mediawiki.contentRep.SimpleFile

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.