View Single Post
  #18 (permalink)  
Old 04-22-2008, 04:34 PM
sanjeevtarar's Avatar
sanjeevtarar sanjeevtarar is offline
Senior Member
 
Join Date: Apr 2008
Location: Delhi(India)
Posts: 251
sanjeevtarar is on a distinguished road
Quote:
Originally Posted by denisdoherty View Post
I have romoved the abstract from the class. and have public void ReturnAverage (String Average) throws RemoteException; that in the interface and i am getting the error: Helper is not abstract and does not have override abstract method ReturnAverage(java.lang.String) in Interface
Just write these code in your class

public void ReturnAverage (String Average) throws RemoteException
{
}

when you are implementing interface you have to implement all the methods of it until or unless you mark your class as abstract.

sanjeev
Reply With Quote