Package org.exist.xquery

Examples of org.exist.xquery.LiteralValue


    }

    protected AnnotationAdapter(final org.exist.xquery.Annotation annotation, final FunctionSignatureAdapter functionSignatureAdapter) {
        this.name = annotation.getName().toJavaQName();
       
        final LiteralValue literalValues[] = annotation.getValue();
        this.literals = new LiteralValueAdapter[literalValues.length];
        for(int i = 0; i < literalValues.length; i++) {
            literals[i] = new LiteralValueAdapter(literalValues[i]);
        }
       
View Full Code Here


         
        final UserDefinedFunction function = context.resolveFunction(functionName, urls.length);
        if (function != null) {
          final List<Expression> args = new ArrayList<Expression>(urls.length);
          for (int i = 0; i < urls.length; i++)
            args.add(new LiteralValue(context, new AnyURIValue(urls[i])));
         
          pm = broker.getBrokerPool().getProcessMonitor();
         
              context.getProfiler().traceQueryStart();
              pm.queryStarted(context.getWatchDog());
View Full Code Here

TOP

Related Classes of org.exist.xquery.LiteralValue

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.