Assuming that we have books
class Book {
String title
String type="Book"
String author
Book parentBook // <----<<<
//...
}
and we extend books to other types
class ReferenceBook extends Book {
String type="RefBook"
void setParentBook(Book b) {
if ((b && b.type) && (b.type=="RefBook")) {
parentBook = b
} else {
parentBook = null
}
}
}
When I do this I get a java.lang.reflect.InvocationTargetException when attempting to set a parentBook for ReferenceBook.
I know I'm missing something here...
