Introduction to OOP Chapter 2: Abstraction : next previous audio real text

Levels of Abstraction -- An Implementation

Next we look at the services provided, but from the implementation side:
public class LinkedList implements Stack ... {
	public void pop () throws  EmptyStackException { ... }
	...
}
Concern here is with the high level approach to providing the designated service.
Intro OOP, Chapter 2, Slide 10