Package net.sourceforge.jwbf.mediawiki.contentRep

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


    Iterator<Element> el = root.getChildren().iterator();
    while (el.hasNext()) {
      Element element = el.next();
      if (element.getQualifiedName().equalsIgnoreCase("item")) {

        LogItem l = new LogItem();
        l.setTitle(element.getAttributeValue("title"));
        l.setType(element.getAttributeValue("type"));
        l.setUser(element.getAttributeValue("user"));
        logCollection.add(l);

      } else {
        findContent(element);
      }
View Full Code Here

TOP

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

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.