Package org.openrdf.query.parser.serql.ast

Examples of org.openrdf.query.parser.serql.ast.ASTURI


      if (namespace == null) {
        throw new VisitorException("QName '" + qname + "' uses an undefined prefix");
      }

      // Replace the qname node with a new IRI node in the parent node
      ASTURI uriNode = new ASTURI(SyntaxTreeBuilderTreeConstants.JJTURI);
      uriNode.setValue(namespace + localName);
      qnameNode.jjtReplaceWith(uriNode);

      return null;
    }
View Full Code Here

TOP

Related Classes of org.openrdf.query.parser.serql.ast.ASTURI

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.