Talk:Errata
From APIDesign
(Difference between revisions)
(Removing all content from page) |
(Erratum page 90) |
||
| Line 1: | Line 1: | ||
| + | (Please discuss, review and move to main page if correct) | ||
| + | == Chapter 6 == | ||
| + | page 90:<br/> | ||
| + | "... simply add the more complicated way of saying hello to its definition: | ||
| + | <code> | ||
| + | public '''abstract class''' HelloClass '''extends''' SimpleHelloClass { | ||
| + | } | ||
| + | </code> | ||
| + | This change is ..." | ||
| + | |||
| + | should define the complicated sayHelloTo: | ||
| + | <code> | ||
| + | public '''abstract class''' HelloClass '''extends''' SimpleHelloClass { | ||
| + | '''public abstract''' String sayHelloTo(String who); | ||
| + | } | ||
| + | </code> | ||
Revision as of 21:47, 7 October 2010
(Please discuss, review and move to main page if correct)
Chapter 6
page 90:
"... simply add the more complicated way of saying hello to its definition:
public abstract class HelloClass extends SimpleHelloClass {
}
This change is ..."
should define the complicated sayHelloTo:
public abstract class HelloClass extends SimpleHelloClass {
public abstract String sayHelloTo(String who);
}