Package org.gedcom4j.model

Examples of org.gedcom4j.model.CitationWithoutSource


            } else {
                checkOptionalString(c.roleInEvent, "role in event", c);
            }
            checkOptionalString(c.certainty, "certainty/quality", c);
        } else if (citation instanceof CitationWithoutSource) {
            CitationWithoutSource c = (CitationWithoutSource) citation;
            checkStringList(c.description, "description on a citation without a source", true);
            if (c.textFromSource == null) {
                if (rootValidator.autorepair) {
                    c.textFromSource = new ArrayList<List<String>>();
                    addInfo("Text from source collection (the list of lists) was null in CitationWithoutSource - autorepaired",
View Full Code Here

TOP

Related Classes of org.gedcom4j.model.CitationWithoutSource

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.