-
Notifications
You must be signed in to change notification settings - Fork 0
/
CreateModel.java
53 lines (39 loc) · 1.12 KB
/
CreateModel.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.example.cosmic.androidappclasses;
import android.graphics.Bitmap;
/**
* Created by ${cosmic} on 12/21/17.
*/
public class CreateModel {
private String mfromOnTextImage;
private String mfromTimestamp;
private String mwordCount;
private Bitmap mbitmap;
public Bitmap getMbitmap() {
return mbitmap;
}
public String getMfromOnTextImage() {
return mfromOnTextImage;
}
public void setMbitmap(Bitmap mbitmap) {
this.mbitmap = mbitmap;
}
public void setMfromOnTextImage(String mfromOnTextImage) {
this.mfromOnTextImage = mfromOnTextImage;
}
public String getMfromTimestamp() {
return mfromTimestamp;
}
public String getMwordCount() {
return mwordCount;
}
public void setMfromTimestamp(String mfromTimestamp) {
this.mfromTimestamp = mfromTimestamp;
}
public void setMwordCount(String mwordCount) {
this.mwordCount = mwordCount;
}
private static final CreateModel createdModel = new CreateModel();
public static CreateModel getIntance(){
return createdModel;
}
}