abstract class and method
- From: marcpirat@xxxxxxxxx
- Date: 29 Nov 2005 13:45:37 -0800
hi
i have an abstract class with an abstract method
[CODE]import java.net.*;
import java.io.*;
abstract public class Protocol {
protected Passerelle passerelle;
public Passerelle getPasserelle(){
return passerelle;
}
public void setPasserelle(Passerelle pass){
passerelle=pass;
}
public Protocol(){
passerelle = new Passerelle();
}
abstract public String processInput(String theInput, Socket
socket);
} [/CODE]
i tried to had
[CODE]
abstract public String processInput(String theInput, Socket socket,
Object obj);
abstract public String processInput(String theInput, Object obj);
[/CODE]
we can't have some abstract method with the same name... java don't
like that...
are there a way to do that?
thanks
.
- Follow-Ups:
- Re: abstract class and method
- From: Rebecca
- Re: abstract class and method
- Prev by Date: Re: Tagging interfaces
- Next by Date: Re: checking casts
- Previous by thread: checking casts
- Next by thread: Re: abstract class and method
- Index(es):