aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws-client/src/main/java/org
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2011-05-05 15:08:04 +0200
committersimonbrandhof <simon.brandhof@gmail.com>2011-05-05 15:08:04 +0200
commitbcc445118956633eb4084581a47edbe5672cefb4 (patch)
treebb9a602d2fe81041dd27ac00766b3895ce2f993e /sonar-ws-client/src/main/java/org
parentae508ce93d67bb07ee70c2ec5290d6d093e12de4 (diff)
downloadsonarqube-bcc445118956633eb4084581a47edbe5672cefb4.tar.gz
sonarqube-bcc445118956633eb4084581a47edbe5672cefb4.zip
Reduce technical debt
Diffstat (limited to 'sonar-ws-client/src/main/java/org')
-rw-r--r--sonar-ws-client/src/main/java/org/sonar/wsclient/services/Review.java58
1 files changed, 33 insertions, 25 deletions
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/services/Review.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/services/Review.java
index e2c1756d726..eef8c5a475b 100644
--- a/sonar-ws-client/src/main/java/org/sonar/wsclient/services/Review.java
+++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/services/Review.java
@@ -52,8 +52,9 @@ public class Review extends Model {
* @param id
* the id to set
*/
- public void setId(Long id) {
+ public Review setId(Long id) {
this.id = id;
+ return this;
}
/**
@@ -67,8 +68,9 @@ public class Review extends Model {
* @param createdAt
* the createdAt to set
*/
- public void setCreatedAt(Date createdAt) {
+ public Review setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
+ return this;
}
/**
@@ -82,8 +84,9 @@ public class Review extends Model {
* @param updatedAt
* the updatedAt to set
*/
- public void setUpdatedAt(Date updatedAt) {
+ public Review setUpdatedAt(Date updatedAt) {
this.updatedAt = updatedAt;
+ return this;
}
/**
@@ -94,11 +97,12 @@ public class Review extends Model {
}
/**
- * @param authorLogin
+ * @param s
* the authorLogin to set
*/
- public void setAuthorLogin(String authorLogin) {
- this.authorLogin = authorLogin;
+ public Review setAuthorLogin(String s) {
+ this.authorLogin = s;
+ return this;
}
/**
@@ -109,11 +113,12 @@ public class Review extends Model {
}
/**
- * @param assigneeLogin
+ * @param s
* the assigneeLogin to set
*/
- public void setAssigneeLogin(String assigneeLogin) {
- this.assigneeLogin = assigneeLogin;
+ public Review setAssigneeLogin(String s) {
+ this.assigneeLogin = s;
+ return this;
}
/**
@@ -124,11 +129,12 @@ public class Review extends Model {
}
/**
- * @param title
+ * @param s
* the title to set
*/
- public void setTitle(String title) {
- this.title = title;
+ public Review setTitle(String s) {
+ this.title = s;
+ return this;
}
/**
@@ -139,11 +145,12 @@ public class Review extends Model {
}
/**
- * @param type
+ * @param s
* the type to set
*/
- public void setType(String type) {
- this.type = type;
+ public Review setType(String s) {
+ this.type = s;
+ return this;
}
/**
@@ -157,8 +164,9 @@ public class Review extends Model {
* @param status
* the status to set
*/
- public void setStatus(String status) {
+ public Review setStatus(String status) {
this.status = status;
+ return this;
}
/**
@@ -172,8 +180,9 @@ public class Review extends Model {
* @param severity
* the severity to set
*/
- public void setSeverity(String severity) {
+ public Review setSeverity(String severity) {
this.severity = severity;
+ return this;
}
/**
@@ -187,8 +196,9 @@ public class Review extends Model {
* @param resourceKee
* the resourceKee to set
*/
- public void setResourceKee(String resourceKee) {
+ public Review setResourceKee(String resourceKee) {
this.resourceKee = resourceKee;
+ return this;
}
/**
@@ -202,8 +212,9 @@ public class Review extends Model {
* @param line
* the line to set
*/
- public void setLine(Integer line) {
+ public Review setLine(Integer line) {
this.line = line;
+ return this;
}
/**
@@ -213,18 +224,15 @@ public class Review extends Model {
return comments;
}
- /**
- * @param comments
- * the comments to set
- */
- public void addComments(Date updatedAt, String authorLogin, String text) {
+ public Review addComments(Date updatedAt, String authorLogin, String text) {
this.comments.add(new Review.Comment(updatedAt, authorLogin, text));
+ return this;
}
/**
* @since 2.8
*/
- public class Comment extends Model {
+ public static final class Comment extends Model {
private String authorLogin = null;
private Date updatedAt = null;