Package org.apache.stanbol.entityhub.ldpath.backend

Examples of org.apache.stanbol.entityhub.ldpath.backend.AbstractBackend


        } else { //validate the parsed LDPath program
            //when this method is called the real RDFBackend will not be available.
            //however we would like to parse/validate the parsed LDPath program
            //So we will create a pseudo RDFBackend sufficient to be used with the
            //parser
            final RDFBackend<Object> parseBackend = new AbstractBackend() {
                @Override
                protected QueryResultList<String> query(FieldQuery query) throws EntityhubException {
                    throw new UnsupportedOperationException("Not expected to be called");
                }
                @Override
View Full Code Here

TOP

Related Classes of org.apache.stanbol.entityhub.ldpath.backend.AbstractBackend

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.