KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > rmi > examples > time > TimeServiceIF


1 package org.sapia.ubik.rmi.examples.time;
2
3 import java.rmi.Remote JavaDoc;
4
5
6 /**
7  *
8  *
9  */

10 public interface TimeServiceIF extends Remote JavaDoc {
11   /**
12    * Returns the current system time.
13    *
14    * @return The current system time.
15    */

16   public String JavaDoc getTime();
17 }
18
Popular Tags