I don't know what your programming background is so this is just based on my own experience. Your mileage may vary.
In general, I would say that it's true that Bruce Eckel's "Thinking in Java" does not really discuss OOP as much as it does the mechanics and syntax of the Java language itself. The first two chapters give you a quick overview of OOP concepts but the rest of the book deals more on syntax and usage of the core library classes.
For someone with some good programming experience of any kind (not necessarily OO), I would recommend reading some of the articles on OO Design Principles that you can find at
http://www.objectmentor.com Martin Fowler's "Refactoring" book is a good source of not only "good OO" code but also "not-so-good OO" code. The nice thing about seeing both is that you can more easily appreciate the advantages that the good OO code has over the not-so-good.
Another book I'd look at would be Craig Larman's book on UML and
Patterns. The book emphasizes several OO design principles that any good OO programmer should understand and know how to apply.