1 30 31 package it.businesslogic.ireport.rmi; 32 33 import java.io.File ; 34 import java.rmi.*; 35 36 public interface IReportServer extends Remote 37 { 38 41 public boolean ping() throws RemoteException; 42 43 46 public boolean setVisible(boolean b) throws RemoteException; 47 48 51 public boolean openFile(String file) throws RemoteException; 52 53 public boolean runWizard(String destFile) throws RemoteException; 54 } 55 56 | Popular Tags |