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

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

add

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

add

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

add

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

add

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

add

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

add

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

add

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

div

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