Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions ComplaintData.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ public class ComplaintData {
private String date;
private String upVote;
private String status;
private String complaintId;

public ComplaintData(String title, String description, String date, String upVote, String status) {
public ComplaintData(String title, String description, String date, String upVote, String status, String complainId) {
this.title = title;
this.description = description;
this.date = date;
this.upVote = upVote;
this.status = status;
this.complaintId = complaintId;
}

String getTitle() {
Expand All @@ -35,7 +37,9 @@ String getUpVote() {
String getStatus() {
return status;
}



String getComplainId(){
return complaintId;
}

}