Package net.sourceforge.jwbf.mediawiki.actions.meta

Examples of net.sourceforge.jwbf.mediawiki.actions.meta.GetVersion


   */
  public final Version getVersion() throws RuntimeException {
    if (version == null || loginChangeVersion) {

      try {
        GetVersion gs = new GetVersion();
        performAction(gs);

        version = gs.getVersion();
        loginChangeVersion = false;
      } catch (JwbfException e) {
        LOGGER.error(e.getClass().getName() + e.getLocalizedMessage());
        throw new RuntimeException(e.getLocalizedMessage());
      }
View Full Code Here

TOP

Related Classes of net.sourceforge.jwbf.mediawiki.actions.meta.GetVersion

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.