summaryrefslogtreecommitdiff
path: root/sources/core/VSLamport.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-15 23:08:33 +0000
committerPaul Buetow <paul@buetow.org>2008-05-15 23:08:33 +0000
commitd4c1ddcc90c1e2e8660598fc36b3772d2bff6816 (patch)
tree28a0afc255e42f92adbca0d102e785301bc43a58 /sources/core/VSLamport.java
parent61599471a5978c1521b9c89c044ac2ce9a88c398 (diff)
1 Moved the stuff to trunk!
Diffstat (limited to 'sources/core/VSLamport.java')
-rw-r--r--sources/core/VSLamport.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/sources/core/VSLamport.java b/sources/core/VSLamport.java
new file mode 100644
index 0000000..157aaae
--- /dev/null
+++ b/sources/core/VSLamport.java
@@ -0,0 +1,19 @@
+package core;
+
+public class VSLamport {
+ private long time;
+ private long lamportTime;
+
+ public VSLamport(long time, long lamportTime) {
+ this.time = time;
+ this.lamportTime = lamportTime;
+ }
+
+ public long getTime() {
+ return time;
+ }
+
+ public long getLamportTime() {
+ return lamportTime;
+ }
+}