use of org.apache.jena.sparql.syntax.Template in project jena by apache.
the class ConstructHandler method addAll.
/**
* Add all the construct handlers from the handler argument to this construct.
* @param handler The construct handler to copy from.
*/
public void addAll(ConstructHandler handler) {
constructs.addAll(handler.constructs);
query.setConstructTemplate(new Template(BasicPattern.wrap(constructs)));
}
Aggregations