Added Android code
[wl-app.git] / Android / folioreader / src / main / java / com / folioreader / model / dictionary / Example.java
1 package com.folioreader.model.dictionary;
2
3 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4 import com.fasterxml.jackson.annotation.JsonProperty;
5
6 /**
7  * @author gautam chibde on 4/7/17.
8  */
9 @JsonIgnoreProperties(ignoreUnknown = true)
10 public class Example {
11     @JsonProperty
12     private String text;
13
14     @Override
15     public String toString() {
16         return "Example{" +
17                 "text='" + text + '\'' +
18                 '}';
19     }
20
21     public String getText() {
22         return text;
23     }
24
25     public void setText(String text) {
26         this.text = text;
27     }
28 }