com.bigdata.rdf.sail.sparql.ast.ASTUpdate Maven / Gradle / Ivy
/*
* Copyright Aduna (http://www.aduna-software.com/) (c) 2011.
*
* Licensed under the Aduna BSD-style license.
*/
package com.bigdata.rdf.sail.sparql.ast;
import com.bigdata.rdf.sail.sparql.ast.ASTOperation;
import com.bigdata.rdf.sail.sparql.ast.SyntaxTreeBuilder;
/**
* @author jeen
*/
public abstract class ASTUpdate extends ASTOperation {
/**
* @param id
*/
public ASTUpdate(int id) {
super(id);
}
public ASTUpdate(SyntaxTreeBuilder p, int id) {
super(p, id);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy