1 24 25 package org.objectweb.dream.time; 26 27 import org.objectweb.dream.AbstractComponent; 28 import org.objectweb.dream.util.EmptyStringArray; 29 30 34 public class TimeStampImpl extends AbstractComponent 35 implements 36 GetTimeStamp, 37 SetTimeStamp 38 { 39 40 41 private long timeStamp = 0; 42 43 47 50 public long setTimeStamp() 51 { 52 this.timeStamp = System.currentTimeMillis(); 53 return timeStamp; 54 } 55 56 60 63 public long getTimeStamp() 64 { 65 return timeStamp; 66 } 67 68 72 75 public synchronized String [] listFc() 76 { 77 return EmptyStringArray.EMPTY_STRING_ARRAY; 78 } 79 80 } | Popular Tags |