Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package models;
- import android.graphics.Bitmap;
- import android.media.Image;
- /**
- * Created by semior001 on 04.09.16.
- */
- public class News {
- private String body;
- private String authorName;
- private Bitmap authorAvatar;
- public News(){}
- public News (String body, String authorName, Bitmap authorAvatar){
- this.body = body;
- this.authorName = authorName;
- this.authorAvatar = authorAvatar;
- }
- public String getBody() {
- return body;
- }
- public void setBody(String body) {
- this.body = body;
- }
- public String getAuthorName() {
- return authorName;
- }
- public void setAuthorName(String authorName) {
- this.authorName = authorName;
- }
- public Bitmap getAuthorAvatar() {
- return authorAvatar;
- }
- public void setAuthorAvatar(Bitmap authorAvatar) {
- this.authorAvatar = authorAvatar;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement