Go To Homepage



Book Details
Foundations of Java for ABAP Programmers book cover
  • By Alistair Rooney
  • ISBN13: 978-1-59059-625-8
  • ISBN10: 1-59059-625-0
  • 216 pp.
  • Published Mar 2006
  • Print Book Price: $64.99
  • eBook Price: $45.49



Errata Submission

If you think that you've found an error in Foundations of Java for ABAP Programmers, please let us know about it. You will find any confirmed erratum below, so you can check if your concern has already been addressed.

Submit Errata
Foundations of Java for ABAP Programmers (978-1-59059-625-8)

Errata

Issue Author's Response
I like your book, but I find your variable-, method-, and class-naming sometimes confusing.. take this, from RefreshModelListServlet.java from chapter 4:

private static class MakeModelYear {
private int modelYear;
private String make;
private String model;

public MakeModelYear(int modelYear, String make, String model) {
this.modelYear = modelYear;
this.make = make;
this.model = model;
}


would have been nice if the method had a different name from the class!!

this.modelYear = modelYear;

does this.modelYear refer to this line
private int modelYear;
in the class outside the method,

or to the param that's passed to the method???? a little less confusing naming-convention here would have been nice...
lines like this

if(availableModel.modelYear == modelYear)

are really a bit confusing..

thank you..

Frances Del Rio
Thanks Frances - unfortunately this code is not in my book. I Think you must be confusing it with another book. Perhaps you could give the exact page and Lesson number (I don't have chapters in my book)

Thank you

Alistair Rooney