Skip to content

Commit 12a9589

Browse files
MaillPierreremiceres
authored andcommitted
Some doc
1 parent e98bf30 commit 12a9589

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/main/java/fr/inria/corese/core/next/query/impl/parser/listener/LoadQueryFeature.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import fr.inria.corese.core.next.query.impl.parser.SparqlAstBuilder;
55
import fr.inria.corese.core.next.query.impl.sparql.ast.IriAst;
66

7+
/**
8+
* AST feature listener for LOAD SPARQL update query
9+
*/
710
public class LoadQueryFeature extends AbstractSparqlFeature {
811

912
public LoadQueryFeature(SparqlAstBuilder builder) {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
package fr.inria.corese.core.next.query.impl.sparql.ast;
22

3+
/**
4+
* Represents the CLEAR queries as defined in the <a href="https://www.w3.org/TR/2013/REC-sparql11-update-20130321/#clear">SPARQL 1.1 recommendation<a/>.
5+
* @param graphRef targeted graph to be cleared
6+
* @param silent Determine if the resolution of the query must be resolved silently or not.
7+
*/
38
public record ClearQueryAst(GraphRefAst graphRef, boolean silent) implements UpdateQueryAst {
49
}

0 commit comments

Comments
 (0)