Package org.apache.marmotta.ldpath.api.functions

Examples of org.apache.marmotta.ldpath.api.functions.TestFunction


    private void addDefaultTestFunctions() {
      Iterator<TestFunction> testFunctions = testLoader.iterator();
      while(testFunctions.hasNext()){
            try {
            TestFunction testFunction = testFunctions.next();
                log.info("registering LDPath test function: {}",
                        testFunction.getSignature());
                addTestFunction(testFunction);
            } catch (ServiceConfigurationError e) {
                log.warn("Unable to load function because of an "
                        + e.getClass().getSimpleName(), e);
            }
View Full Code Here

TOP

Related Classes of org.apache.marmotta.ldpath.api.functions.TestFunction

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.