home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / Java Support / Java_Source / Java2 / src / java / rmi / Remote.java < prev    next >
Encoding:
Java Source  |  1999-05-28  |  1.6 KB  |  41 lines  |  [TEXT/CWIE]

  1. /*
  2.  * @(#)Remote.java    1.7 98/09/21
  3.  *
  4.  * Copyright 1996-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.rmi;
  16.  
  17. /** 
  18.  * The <code>Remote</code> interface serves to identify interfaces whose
  19.  * methods may be invoked from a non-local virtual machine.  Any object that
  20.  * is a remote object must directly or indirectly implement this interface.
  21.  * Only those methods specified in a "remote interface", an interface that
  22.  * extends <code>java.rmi.Remote</code> are available remotely.
  23.  *
  24.  * <p>Implementation classes can implement any number of remote interfaces and
  25.  * can extend other remote implementation classes.  RMI provides some
  26.  * convenience classes that remote object implementations can extend which
  27.  * facilitate remote object creation.  These classes are
  28.  * <code>java.rmi.server.UnicastRemoteObject</code> and
  29.  * <code>java.rmi.activation.Activatable</code>.
  30.  *
  31.  * <p>For complete details on RMI, see the <a
  32.  href=http://java.sun.com/products/jdk/1.2/docs/guide/rmi/spec/rmiTOC.doc.html>RMI Specification</a> which describes the RMI API and system</a>.
  33.  *
  34.  * @version 1.7, 09/21/98
  35.  * @since   JDK1.1
  36.  * @author  Ann Wollrath
  37.  * @see        java.rmi.server.UnicastRemoteObject
  38.  * @see     java.rmi.activation.Activatable
  39.  */
  40. public interface Remote {}
  41.