Skip to content

Commit

Permalink
fixed javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
acordsen authored and acordsen committed Apr 12, 2021
1 parent 060ccd5 commit 5240f59
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/main/java/gmbh/dtap/refine/client/ProjectLocation.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public interface ProjectLocation {

/**
* Returns the ID of the project. The ID is present as query parameter <tt>project</tt> in the URL also.
* Returns the ID of the project. The ID is present as query parameter <code>project</code> in the URL also.
*
* @return the project ID
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gmbh/dtap/refine/client/RefineProject.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.util.List;

/**
* This interface defines a project representation of the <a href="https://github.com/OpenRefine/OpenRefine/wiki/OpenRefine-API"></a>OpenRefine API</a>.
* This interface defines a project representation of the <a href="https://github.com/OpenRefine/OpenRefine/wiki/OpenRefine-API">OpenRefine API</a>.
*/
public interface RefineProject {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gmbh/dtap/refine/client/ResponseCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package gmbh.dtap.refine.client;

/**
* Represents the field <tt>code</tt> from a refine response.
* Represents the field <code>code</code> from a refine response.
*/
public enum ResponseCode {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import static org.apache.http.util.Asserts.notEmpty;

/**
* This class represents the response from the <tt>apply operations</tt> request.
* This class represents the response from the <code>apply operations</code> request.
*/
public class ApplyOperationsResponse extends RefineResponse {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import static org.apache.http.util.Asserts.notEmpty;

/**
* This class represents the response from the <tt>delete project</tt> request.
* This class represents the response from the <code>delete project</code> request.
*/
public class DeleteProjectResponse extends RefineResponse {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ public Builder expression(String expression) {
}

/**
* Sets the <tt>grel</tt> expression to execute.
* Sets the <code>grel</code> expression to execute.
*
* @param expression the expression in <tt>grel</tt> to execute
* @param expression the expression in <code>grel</code> to execute
* @return the builder for fluent usage
*/
public Builder grel(String expression) {
Expand All @@ -243,9 +243,9 @@ public Builder grel(String expression) {
}

/**
* Sets the <tt>jython</tt> expression to execute.
* Sets the <code>jython</code> expression to execute.
*
* @param expression the expression <tt>jython</tt> to execute
* @param expression the expression <code>jython</code> to execute
* @return the builder for fluent usage
*/
public Builder jython(String expression) {
Expand All @@ -254,9 +254,9 @@ public Builder jython(String expression) {
}

/**
* Sets the <tt>clojure</tt> expression to execute.
* Sets the <code>clojure</code> expression to execute.
*
* @param expression the expression <tt>clojure</tt> to execute
* @param expression the expression <code>clojure</code> to execute
* @return the builder for fluent usage
*/
public Builder clojure(String expression) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import static org.apache.http.util.Asserts.notNull;

/**
* This class represents the response from the <tt>expression preview</tt> request.
* This class represents the response from the <code>expression preview</code> request.
*/
public class ExpressionPreviewResponse extends RefineResponse {

Expand Down

0 comments on commit 5240f59

Please sign in to comment.