actorremote.java

来自「Java游戏高级编程!!很不错的!!!Java游戏高级编程!!很不错的」· Java 代码 · 共 43 行

JAVA
43
字号
     package com.croftsoft.core.role.actor;

     import java.rmi.*;

     /*********************************************************************
     * A semantic interface for bootstrapping the exchange of semantic
     * interfaces between remote objects.
     *
     * <P>
     *
     * The semantic definition for this interface is available at:<BR>
     * <A HREF="http://www.alumni.caltech.edu/~croft/research/agent/role/">
     * http://www.alumni.caltech.edu/~croft/research/agent/role/</A>
     *
     * <P>
     *
     * This differs from the com.orbs.pub.agent.role.Actor semantic
     * interface in the following ways:
     *
     * <OL>
     * <LI> the interface extend java.rmi.Remote
     * <LI> the method throws java.rmi.RemoteException
     * </OL>
     *
     * <P>
     *
     * @author
     *   <A HREF="http://www.alumni.caltech.edu/~croft/">David W. Croft</A>
     * @version
     *   1998-04-26
     *********************************************************************/

     public interface  ActorRemote extends Remote
     //////////////////////////////////////////////////////////////////////
     //////////////////////////////////////////////////////////////////////
     {

     public abstract String [ ]  getRolesRemote ( ) throws RemoteException;
     
     //////////////////////////////////////////////////////////////////////
     //////////////////////////////////////////////////////////////////////
     }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?