What he means is that you should provide an interface, and an abstract class implementing parts of this interface:
public interface Foo {
void bar();
void baz();
}
private abstract class AbstractFoo implements Foo {
...
}
The AbstractFoo class may even not be abstract if it's possible to provide a basic, complete implementation. But if you need a class that is a Foo, but can't extend AbstractFoo, it's still possible with an interface. An abstract class doesn't provide this capability, since you can only extend one class.
BTW, this is what is done in the collections framework (which Josh Bloch created): the Set interface is implemented by AbstractSet, the List interface is implemented by AbstractList, etc.