Revision 104,
410 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package simulator.stats.implementation; |
---|
2 | |
---|
3 | import simulator.stats.implementation.out.StatsSerializer; |
---|
4 | import java.util.UUID; |
---|
5 | |
---|
6 | public abstract class StatsAbstractClass { |
---|
7 | |
---|
8 | protected UUID uuid; |
---|
9 | |
---|
10 | protected StatsAbstractClass(){ |
---|
11 | uuid = UUID.randomUUID(); |
---|
12 | } |
---|
13 | |
---|
14 | public abstract Object serialize(StatsSerializer serializer); |
---|
15 | public abstract String[] getHeaders(); |
---|
16 | |
---|
17 | public UUID getUUID() { |
---|
18 | return uuid; |
---|
19 | } |
---|
20 | |
---|
21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.