Perhaps a stupid question, but I was wondering today about the frequent case in which one has several classes (from Java libraries, or some other library) that have some common methods, but this commonality is not exposed in an interface declaration.
For example, JTextField and JButton (along others in javax.swing.*) share a method
public void addActionListener(ActionListener l)
but this is not exposed in an interface. Now, perhaps I want to do something with objets that have that method, that is, I'd like to have an interface (perhaps define it myself) :
public interface CanAddActionListener {
public void addActionListener(ActionListener l);
}
and then have some method that receives arguments of that interface:
public void myMethod(CanAddActionListener aaa, ActionListener li) {
aaa.addActionListener(li);
....
But, regretfully, I can't still write
JButton button;
ActionListener li;
...
this.myMethod(button,li);
nor even cast JButton to CanAddActionListener, because JButton is not declared to implement the interface CanAddActionListener... though it "actually" implements it.
This is sometimes an inconvenience - and the Java itself in its history has modified several core clases to implement a new interface made of old methods (String implements CharSequence, for example).
My simple question is: why this is necessary? I understand the utility of declaring that a class implements an interface. But anyway, in my example, why can't the compiler deduce that the class JButton "satisfies" the interface declaration (looking inside it) and accept the cast? Is it an issue of compiler efficiency or there are more fundamental problems?
Update: Several good answers below. My summary: This is a case in which Java could have made allowance for some "structural typing" (sort of a duck typing - but checked at compile time). It didn't. Apart from some (unclear for me) performance and implementations difficulties, there is a more fundamental-conceptual issue here: In Java's philosophy, the declaration of an interface (and in general, of everything) is not meant to be merely structural (it has these methods with these signatures) but semantical: the interface -and its methods- is supposed to represent some specific behavior/intent. (An extreme example: recall the "marker interfaces", which do not even have methods!) Now, a class which structurally satisfies some interface (i.e., it has methods with the required signatures) does not necessarily satisfies it semantically; hence, Java refuses to conclude that it implements that interface, unless that has been explicitly declared. Other languages (Go, Scala) have other philosophies.