TP-intergiciel/TP2/Carnet.java

9 lines
205 B
Java
Raw Normal View History

2023-04-22 15:36:05 +00:00
import java.rmi.*;
public interface Carnet extends Remote {
public void Ajouter(SFiche sf) throws RemoteException;
public RFiche Consulter(String n, boolean forward) throws RemoteException;
}