Skip to content

Commit

Permalink
Merge pull request #275 from WDAqua/resolveJavadocErrors
Browse files Browse the repository at this point in the history
Resolved Javadoc errors
  • Loading branch information
dschiese authored May 19, 2024
2 parents e666702 + 030f823 commit 1b7de67
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion qanary_commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>eu.wdaqua.qanary</groupId>
<artifactId>qa.commons</artifactId>
<version>3.12.0</version>
<version>3.12.1</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public static String getHighestScoreAnnotationOfAnswerInGraph(URI graph) throws
}

/**
* Get SELECT query to get the answer SPARQL with the lowest index in a graph </br>
* Get SELECT query to get the answer SPARQL with the lowest index in a graph <br/>
* (for implementations where order of created query candidates matters).
*
* @param graph
Expand Down Expand Up @@ -201,7 +201,7 @@ public static String getAllAnnotationOfAnswerSPARQL(URI graph) throws IOExceptio
* @param bindings
* @deprecated
* Annotation of literal values using AnnotationAnswer, as it is done in this method, is
* discouraged. Use {@link #insertAnnotationOfAnswerJson()} instead, to annotate the
* discouraged. Use {@link #insertAnnotationOfAnswerJson(QuerySolutionMap)} instead, to annotate the
* result JSON of a SPARQL query.
* @return
* @throws IOException
Expand All @@ -214,7 +214,7 @@ public static String insertAnnotationOfTypedLiteral(QuerySolutionMap bindings) t
/**
* Get INSERT query to annotate the answer data type.
*
* @param bindings required bindings for the query: </br>
* @param bindings required bindings for the query: <br/>
* ?graph, ?targetQuestion, ?answerDataType, ?confidence, ?application
* @return
* @throws IOException
Expand All @@ -226,8 +226,8 @@ public static String insertAnnotationOfAnswerDataType(QuerySolutionMap bindings)
/**
* get INSERT query to annotate SPARQL query that should compute the answer.
*
* @param bindings required bindings for the query: </br>
* ?graph, ?targetQuestion, ?selectQueryThatShouldComputeTheAnswer, </br>
* @param bindings required bindings for the query: <br/>
* ?graph, ?targetQuestion, ?selectQueryThatShouldComputeTheAnswer, <br/>
* ?confidence, ?index, ?application
* @return
* @throws IOException
Expand All @@ -239,7 +239,7 @@ public static String insertAnnotationOfAnswerSPARQL(QuerySolutionMap bindings) t
/**
* Get INSERT query to annotate answer JSON.
*
* @param bindings required bindings for the query: </br>
* @param bindings required bindings for the query: <br/>
* ?graph, ?targetQuestion, ?jsonAnswer, ?confidence, ?application
* @return
* @throws IOException
Expand All @@ -251,7 +251,7 @@ public static String insertAnnotationOfAnswerJson(QuerySolutionMap bindings) thr
/**
* Get INSERT query to annotate an improved question.
*
* @param bindings required bindings for the query: </br>
* @param bindings required bindings for the query: <br/>
* ?graph, ?targetQuestion, ?improvedQuestionText, ?confidence, ?application
* @return
* @throws IOException
Expand Down

0 comments on commit 1b7de67

Please sign in to comment.