Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ public List<Entity> getEntities() {
return entities;
}

/**
* Gets the sentiment.
*
* @return The sentiment
*/
public Sentiment getSentiment() {
return sentiment;
}

/**
* Gets the taxonomy.
*
Expand Down Expand Up @@ -89,6 +98,15 @@ public void setEntities(List<Entity> entities) {
this.entities = entities;
}

/**
* Sets the sentiment.
*
* @param sentiment The sentiment
*/
public void setSentiment(Sentiment sentiment) {
this.sentiment = sentiment;
}

/**
* Sets the taxonomy.
*
Expand Down