-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWord.java
More file actions
30 lines (24 loc) · 753 Bytes
/
Word.java
File metadata and controls
30 lines (24 loc) · 753 Bytes
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
public class Word {
private String word_target;
private String word_explain;
public Word(String word_target, String word_explain) {
this.word_target = word_target;
this.word_explain = word_explain;
}
public Word(Word word) {
this.word_target = word.word_target;
this.word_explain = word.word_explain;
}
public String getWord_target() {
return this.word_target;
}
public void setWord_target(String word_target) {
this.word_target = word_target;
}
public String getWord_explain() {
return this.word_explain;
}
public void setWord_explain(String word_explain) {
this.word_explain = word_explain;
}
}