Package org.semanticweb.owlapi.manchestersyntax.parser

Examples of org.semanticweb.owlapi.manchestersyntax.parser.ManchesterOWLSyntaxParserImpl$DataPropertyCharacteristicsItemParser


    @Provides
    @Nonnull
    public ManchesterOWLSyntaxParser provideManchesterSyntaxParser(
            @Nonnull OWLDataFactory df,
            @Nonnull Provider<OWLOntologyLoaderConfiguration> provider) {
        return new ManchesterOWLSyntaxParserImpl(provider, df);
    }
View Full Code Here


    private ManchesterOWLSyntaxParser createParser(@Nonnull String expression) {
        if (disposed.get()) {
            throw new OWLRuntimeException(
                    "Illegal State: Trying to use an disposed instance.");
        }
        ManchesterOWLSyntaxParser parser = new ManchesterOWLSyntaxParserImpl(
                new OWLAPIConfigProvider(), dataFactory);
        parser.setStringToParse(expression);
        parser.setOWLEntityChecker(entityChecker);
        LOG.info("parsing: {}", expression);
        return parser;
    }
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.manchestersyntax.parser.ManchesterOWLSyntaxParserImpl$DataPropertyCharacteristicsItemParser

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.