com.bigdata.rdf.sail.sparql.ast.ASTGraphRefAll Maven / Gradle / Ivy
/* Generated By:JJTree: Do not edit this line. ASTGraphRefAll.java Version 4.3 */
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
package com.bigdata.rdf.sail.sparql.ast;
import com.bigdata.rdf.sail.sparql.ast.SimpleNode;
import com.bigdata.rdf.sail.sparql.ast.SyntaxTreeBuilder;
import com.bigdata.rdf.sail.sparql.ast.SyntaxTreeBuilderVisitor;
import com.bigdata.rdf.sail.sparql.ast.VisitorException;
public
class ASTGraphRefAll extends SimpleNode {
private boolean _default;
private boolean named;
private boolean allGraphs;
private boolean allSolutions;
public ASTGraphRefAll(int id) {
super(id);
}
public ASTGraphRefAll(SyntaxTreeBuilder p, int id) {
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(SyntaxTreeBuilderVisitor visitor, Object data) throws VisitorException {
return visitor.visit(this, data);
}
/**
* @param _default The default to set.
*/
public void setDefault(boolean _default) {
this._default = _default;
}
/**
* @return Returns the default.
*/
public boolean isDefault() {
return _default;
}
/**
* @param named The named to set.
*/
public void setNamed(boolean named) {
this.named = named;
}
/**
* @return Returns the named.
*/
public boolean isNamed() {
return named;
}
/**
* Return true
iff ALL graphs should be dropped.
*/
public boolean isAllGraphs() {
return allGraphs;
}
public void setAllGraphs(boolean allGraphs) {
this.allGraphs= allGraphs;
}
/**
* Return true
iff ALL named solution sets should be dropped.
*/
public boolean isAllSolutions() {
return allSolutions;
}
public void setAllSolutions(boolean allSolutions) {
this.allSolutions = allSolutions;
}
}
/* JavaCC - OriginalChecksum=76b459b84d8a145884f6d9f597fa6072 (do not edit this line) */
© 2015 - 2024 Weber Informatics LLC | Privacy Policy