Created
January 11, 2017 12:33
-
-
Save semanticer/35de08ef2e848de76a8a07ca04adaaa9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CityInfoContentItem { | |
private int type; | |
// type header - 0 | |
private String headerText; | |
// type phrase - 1 | |
private String extraInfo; | |
private String phrase; | |
private String pronounce; | |
private String translation; | |
// type text - 2 | |
private List<String> lines; | |
// type emergency number - 3 | |
private String number; | |
private String text; | |
// type number - 4 | |
private String realNumber; | |
// type link - 5 | |
private String link; | |
// type link - 6 | |
private List<String> addressLines; | |
private String subjectName; | |
public int getType() { | |
return type; | |
} | |
public void setType(int type) { | |
this.type = type; | |
} | |
public String getHeaderText() { | |
return headerText; | |
} | |
public void setHeaderText(String headerText) { | |
this.headerText = headerText; | |
} | |
public String getExtraInfo() { | |
return extraInfo; | |
} | |
public void setExtraInfo(String extraInfo) { | |
this.extraInfo = extraInfo; | |
} | |
public String getPhrase() { | |
return phrase; | |
} | |
public void setPhrase(String phrase) { | |
this.phrase = phrase; | |
} | |
public String getPronounce() { | |
return pronounce; | |
} | |
public void setPronounce(String pronounce) { | |
this.pronounce = pronounce; | |
} | |
public String getTranslation() { | |
return translation; | |
} | |
public void setTranslation(String translation) { | |
this.translation = translation; | |
} | |
public List<String> getLines() { | |
return lines; | |
} | |
public void setLines(List<String> lines) { | |
this.lines = lines; | |
} | |
public String getNumber() { | |
return number; | |
} | |
public void setNumber(String number) { | |
this.number = number; | |
} | |
public String getText() { | |
return text; | |
} | |
public void setText(String text) { | |
this.text = text; | |
} | |
public String getRealNumber() { | |
return realNumber; | |
} | |
public void setRealNumber(String realNumber) { | |
this.realNumber = realNumber; | |
} | |
public String getLink() { | |
return link; | |
} | |
public void setLink(String link) { | |
this.link = link; | |
} | |
public List<String> getAddressLines() { | |
return addressLines; | |
} | |
public void setAddressLines(List<String> addressLines) { | |
this.addressLines = addressLines; | |
} | |
public String getSubjectName() { | |
return subjectName; | |
} | |
public void setSubjectName(String subjectName) { | |
this.subjectName = subjectName; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment