Package net.sourceforge.jwbf.core.contentRep

Examples of net.sourceforge.jwbf.core.contentRep.Article


   * @throws ProcessException on access problems
   * @see GetRevision
   */
  public synchronized Article readContent(final String name, final int properties)
  throws ActionException, ProcessException {
    return new Article(this, readData(name, properties));
  }
View Full Code Here


    return readContent(title, 0); // FIXME add regular constants
  }

  public Article readContent(String title, int properties)
      throws ActionException, ProcessException {
    return new Article(this, readData(title, properties));
  }
View Full Code Here

  }


  public synchronized Article readContent(String name, int properties)
      throws ActionException, ProcessException {
    return new Article(this, readData(name, properties));
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.jwbf.core.contentRep.Article

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.