Possible Duplicate:
Java abstract interface
When I wondered the implementation of MenuItem.setOnMenuItemClickListener() method, I opened the implementation and this is what I see :
// Compiled from MenuItem.java (version 1.5 : 49.0, no super bit)
public abstract interface android.view.MenuItem {
// Method descriptor #7 ()I
public abstract int getItemId();
// Method descriptor #7 ()I
public abstract int getGroupId();
// Method descriptor #7 ()I
public abstract int getOrder();
//...goes like that
}
As you can see, android.view.MenuItem has two qualifier that I always know they have similiar meaning in programming and mostly for abstraction or force developer.
So what does it mean now?
Difference between Abstract class and interface :
Unlike interfaces, abstract classes can contain fields that are not static and final, and they can contain implemented methods. Such abstract classes are similar to interfaces, except that they provide a partial implementation, leaving it to subclasses to complete the implementation. If an abstract class contains only abstract method declarations, it should be declared as an interface instead.
Multiple interfaces can be implemented by classes anywhere in the class hierarchy, whether or not they are related to one another in any way. Think of Comparable or Cloneable, for example.
By comparison, abstract classes are most commonly subclassed to share pieces of implementation. A single abstract class is subclassed by similar classes that have a lot in common (the implemented parts of the abstract class), but also have some differences (the abstract methods).
Source : http://download.oracle.com/javase/tutorial/java/IandI/abstract.html
