Package com.volantis.mcs.dom

Examples of com.volantis.mcs.dom.MarkupFamily


            DocType docType = document.getDocType();
            if (docType != null) {
                Element element = document.getRootElement();
                String rootElement = element.getName();

                MarkupFamily family = docType.getMarkupFamily();
                String expectedRoot = docType.getRoot();
                if (!family
                        .compareRootElementNames(rootElement, expectedRoot)) {
                    throw new IllegalStateException(
                            "Expected root element name" + expectedRoot +
                                    " does not match actual root element name " +
                                    rootElement);
View Full Code Here

TOP

Related Classes of com.volantis.mcs.dom.MarkupFamily

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.