16 lines
424 B
Java
16 lines
424 B
Java
|
import java.rmi.Remote;
|
||
|
import java.rmi.RemoteException;
|
||
|
import java.util.*;
|
||
|
|
||
|
|
||
|
public interface Noeud extends Remote {
|
||
|
|
||
|
String getPere() throws RemoteException;
|
||
|
String getName() throws RemoteException;
|
||
|
String getFils(int i) throws RemoteException;
|
||
|
void addFils(String n) throws RemoteException;
|
||
|
int getNbFils() throws RemoteException;
|
||
|
Vector getAllFils() throws RemoteException;
|
||
|
|
||
|
}
|