1 5 6 7 8 package com.hp.hpl.jena.rdql.parser; 9 10 import com.hp.hpl.jena.graph.Node ; 11 12 public class Q_URI extends ParsedLiteral { 13 14 Q_URI(int id) 15 { 16 super(id); 17 } 18 19 Q_URI(RDQLParser p, int id) 20 { 21 super(p, id); 22 } 23 24 public void jjtClose() 25 { 26 super._setNode(Node.createURI(super.getURI()) ) ; 27 } 28 29 public static Q_URI makeURI(String s) 30 { 31 Q_URI uri = new Q_URI(0) ; 32 uri._setURI(s) ; 33 return uri ; 34 } 35 } 36 37 63 | Popular Tags |