org.objectweb.carol.irmi.test
Interface RMath

All Superinterfaces:
java.rmi.Remote
All Known Implementing Classes:
RMathImpl

public interface RMath
extends java.rmi.Remote

RMath

Author:
Rafael H. Schloming <rhs@mit.edu>

Method Summary
 int add(byte a, byte b)
           
 int add(char a, char b)
           
 double add(double a, double b)
           
 float add(float a, float b)
           
 int add(int a, int b)
           
 long add(long a, long b)
           
 int add(short a, short b)
           
 java.lang.String add(java.lang.String a, java.lang.String b)
           
 int div(int a, int b)
           
 

Method Detail

add

public int add(byte a,
               byte b)
        throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

add

public int add(char a,
               char b)
        throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

add

public int add(short a,
               short b)
        throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

add

public int add(int a,
               int b)
        throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

add

public long add(long a,
                long b)
         throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

add

public float add(float a,
                 float b)
          throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

add

public double add(double a,
                  double b)
           throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

add

public java.lang.String add(java.lang.String a,
                            java.lang.String b)
                     throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException

div

public int div(int a,
               int b)
        throws java.rmi.RemoteException
Throws:
java.rmi.RemoteException