X-Git-Url: https://git.mdrn.pl/wl-app.git/blobdiff_plain/48b2fe9f7c2dc3d9aeaaa6dbfb27c7da4f3235ff..269195b3729c1bdc22e9053ee4ebca667ea8549d:/Android/folioreader/src/main/java/com/folioreader/model/dictionary/Example.java diff --git a/Android/folioreader/src/main/java/com/folioreader/model/dictionary/Example.java b/Android/folioreader/src/main/java/com/folioreader/model/dictionary/Example.java new file mode 100755 index 0000000..fa2b2fc --- /dev/null +++ b/Android/folioreader/src/main/java/com/folioreader/model/dictionary/Example.java @@ -0,0 +1,28 @@ +package com.folioreader.model.dictionary; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * @author gautam chibde on 4/7/17. + */ +@JsonIgnoreProperties(ignoreUnknown = true) +public class Example { + @JsonProperty + private String text; + + @Override + public String toString() { + return "Example{" + + "text='" + text + '\'' + + '}'; + } + + public String getText() { + return text; + } + + public void setText(String text) { + this.text = text; + } +}