forked from benelog/java-concurrency
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemo.java
More file actions
31 lines (25 loc) · 656 Bytes
/
Memo.java
File metadata and controls
31 lines (25 loc) · 656 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
31
/*
* @(#)LoginInfo.java $version 2011. 11. 16.
*
* Copyright 2007 NHN Corp. All rights Reserved.
* NHN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package study.javacon.findbugs;
import java.io.Serializable;
import java.text.SimpleDateFormat;
import net.jcip.annotations.Immutable;
/**
* @author benelog
*/
@Immutable
public class Memo implements Serializable {
private static final long serialVersionUID = 1L;
final SimpleDateFormat format = new SimpleDateFormat("yyyy");
private String content;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}