git://secure.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
implemented 1416503, automatic closing of braces
[phpeclipse.git]
/
archive
/
net.sourceforge.phpeclipse.wiki
/
src
/
net
/
sourceforge
/
phpeclipse
/
wiki
/
blog
/
BlogEntry.java
1
2
package net.sourceforge.phpeclipse.wiki.blog;
3
4
public class BlogEntry {
5
String fGuid;
6
long fDate;
7
public BlogEntry(String guid, long date) {
8
fGuid = guid;
9
fDate = date;
10
}
11
public String getGuid() {
12
return fGuid;
13
}
14
public long getTime() {
15
return fDate;
16
}
17
}