Package com.hp.hpl.jena.ontology.tidy

Examples of com.hp.hpl.jena.ontology.tidy.SyntaxProblem


        m.read( new StringReader( SOURCE ), null );
        List problems = new ArrayList();
        Resource level = m.getOWLLanguageLevel( problems );
        //System.out.println( "level = " + level );
        for (Iterator i = problems.iterator(); i.hasNext(); ) {
            SyntaxProblem sp = (SyntaxProblem) i.next();
            //System.out.println( "problem = " + sp.longDescription() );
        }
    }
View Full Code Here

TOP

Related Classes of com.hp.hpl.jena.ontology.tidy.SyntaxProblem

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.