204205206207208209210
* @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)); }
77787980818283
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)); }
75767778798081
} public synchronized Article readContent(String name, int properties) throws ActionException, ProcessException { return new Article(this, readData(name, properties)); }