Package org.gedcomx.conclusion

Examples of org.gedcomx.conclusion.NamePart


    String[] pieces = value.split(",\\s*");
    for (String piece : pieces){
      piece = piece.trim();
      if(!piece.equals("")) {
        NamePart namePart = new NamePart();
        namePart.setKnownType(type);
        namePart.setValue(piece);
        nameParts.add(namePart);
      }
    }

    return nameParts;
View Full Code Here

TOP

Related Classes of org.gedcomx.conclusion.NamePart

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.