Package org.foray.fotree

Examples of org.foray.fotree.ForeignXML


    public void addChild(final FObj child) throws FoTreeException {
        if (! (child instanceof ForeignXML)) {
            child.throwException(getFullName() + " child must be a supported "
                    + "type of foreign xml.");
        }
        final ForeignXML foreignXmlChild = (ForeignXML) child;
        this.getChildren().add(foreignXmlChild);
    }
View Full Code Here

TOP

Related Classes of org.foray.fotree.ForeignXML

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.