-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetSetNotice.java
More file actions
48 lines (39 loc) · 1.18 KB
/
GetSetNotice.java
File metadata and controls
48 lines (39 loc) · 1.18 KB
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
package com.example.smash;
import java.util.Date;
public class GetSetNotice {
private int profile_image;
private String nickname;
private String title;
private Date write_data;
private String content;
public int getProfile_image() { return profile_image; }
public void setProfile_image(int profile_image) { this.profile_image = profile_image; }
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
public String getTitle() { return title; }
public void setTitle(String title) {
this.title = title;
}
public Date getWrite_data() {
return write_data;
}
public void setWrite_data(Date write_data) {
this.write_data = write_data;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public GetSetNotice(int profile_image, String nickname, String title, Date write_data, String content){
this.nickname = nickname;
this.title = title;
this.write_data = write_data;
this.content = content;
}
}