programming-examples/java/Basics/Timer.java

20 lines
378 B
Java
Raw Normal View History

2019-11-18 14:44:36 +01:00
Timer
package com.ack.webservices.soap.examples.handlers;
import java.util.Calendar;
import java.util.Date;
public class Timer {
public void sendTime( Date theTime ) {
System.out.println( "time on client: " + theTime );
}
public Date getTime() {
// return time on server
return Calendar.getInstance().getInstance().getTime();
}
}