Package org.semanticweb.owlapi.formats

Examples of org.semanticweb.owlapi.formats.PrefixDocumentFormat.containsPrefixMapping()


            PrefixDocumentFormat prefixFormat = (PrefixDocumentFormat) format;
            prefixFormat.getPrefixName2PrefixMap();
            PrefixDocumentFormat prefixFormat2 = (PrefixDocumentFormat) ont2Format;
            for (String prefixName : prefixFormat.getPrefixNames()) {
                assert prefixName != null;
                assertTrue(prefixFormat2.containsPrefixMapping(prefixName));
                assertEquals(prefixFormat.getPrefix(prefixName),
                        prefixFormat2.getPrefix(prefixName));
            }
        }
        return ont2;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.