I have an claass that implements another one
public class PatientImpl extends UnicastRemoteOb ject implements
PatientInterfac e
In PatientInterfac e, i have this class
public interface PatientInterfac e extends Remote
{
public String getPatientNumme r() throws RemoteException ;
public String getSofiNummer() throws RemoteException ;
public String getVerzekerings Ma() throws RemoteException ;
public String getPolisNummer( ) throws RemoteException ;
public String getNaam() throws RemoteException ;
public String getAdres() throws RemoteException ;
public String getPostCode() throws RemoteException ;
public String getWoonplaats() throws RemoteException ;
public String getGebDatum() throws RemoteException ;
}
But i get this error message when i want to implement the interface
PatientImpl.jav a [11:1] PatientImpl is not abstract and does not override
abstract method getPostCode() in PatientInterfac e
What is wrong here?
Comment