Package ee.widespace.forum

Examples of ee.widespace.forum.Admin


public void startElement( String uri, String localName, String qName, Attributes attrs )
throws SAXException {
  if ( qName.equals("UserList") ) {
    root = new LinkedList();
  } else   if ( qName.equals("User") ) {
    Admin adm = new Admin();
    adm.name = attrs.getValue("name");
    adm.password = attrs.getValue("password");
    root.add(adm);
  }
}
View Full Code Here

TOP

Related Classes of ee.widespace.forum.Admin

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.