Package fi.luomus.commons.containers

Examples of fi.luomus.commons.containers.Person


        String id = node.getAttribute("rdf:about").replace("http://id.luomus.fi/", "");
        String fullname = null;
        if (node.hasChildNodes("MA.fullName")) {
          fullname = node.getNode("MA.fullName").getContents();
        }
        Person person = new Person(new Qname(id), fullname);
        persons.put(id, person);
      }
      return persons;
    }
View Full Code Here

TOP

Related Classes of fi.luomus.commons.containers.Person

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.