82.169.78.58 at 18:29, 9 July 2012 - 2012-07-09 18:29:06

←Older revision Revision as of 18:29, 9 July 2012
Line 21: Line 21:
--[[User:JaroslavTulach|JaroslavTulach]] 14:12, 9 July 2012 (UTC)
--[[User:JaroslavTulach|JaroslavTulach]] 14:12, 9 July 2012 (UTC)
 +
 +
Sorry, I missed the point
 +
--[[Special:Contributions/82.169.78.58|82.169.78.58]] 18:29, 9 July 2012 (UTC)

JaroslavTulach at 14:12, 9 July 2012 - 2012-07-09 14:12:17

←Older revision Revision as of 14:12, 9 July 2012
Line 6: Line 6:
--[[User:JaroslavTulach|JaroslavTulach]] 06:47, 11 October 2010 (UTC)
--[[User:JaroslavTulach|JaroslavTulach]] 06:47, 11 October 2010 (UTC)
 +
 +
 +
Page 350: In the create30 method, the implementation of Visitor.dispatchNumber(Number n) defines RealWrapper.getValue() which calls n.getValue but that method does not exist. It should be n.doubleValue():
 +
<source lang="java">
 +
public double getValue() {
 +
return n.doubleValue();
 +
}
 +
</source>
 +
 +
[[User:JaroslavTulach|My]] reply: No, it is ''n.getValue()'', as the ''Number'' is not {{JDK|java/lang|Number}} but rather own implementation defined at
 +
<source lang="java" snippet="visitor.clientprovider.v1"/>
 +
 +
I'll make a note in the [[Errata]] page.
 +
 +
--[[User:JaroslavTulach|JaroslavTulach]] 14:12, 9 July 2012 (UTC)

JaroslavTulach at 06:47, 11 October 2010 - 2010-10-11 06:47:59

←Older revision Revision as of 06:47, 11 October 2010
Line 1: Line 1:
(Please discuss, review and move to main page if correct)
(Please discuss, review and move to main page if correct)
-
== Chapter 6 ==
 
-
page 90:<br/>
+
-- Cordeo 21:47, 7 October 2010 (UTC)
-
"... simply add the more complicated way of saying hello to its definition:
+
-
<source lang="java" snippet="design.insert.superclass1"/>
+
-
This change is ..."
+
-
should define the complicated sayHelloTo:
+
Thanks for pointing this out, I've included your points into [[Errata 6]]. The snippet code was OK, just it showed just a part of the source file, not whole. I fixed that in http://source.apidesign.org/hg/apidesign/rev/e49c5a2d9b32
-
<source lang="java" snippet="design.insert.superclass2"/>
+
-
[[User:Cordeo|Cordeo]] 21:47, 7 October 2010 (UTC)
+
--[[User:JaroslavTulach|JaroslavTulach]] 06:47, 11 October 2010 (UTC)
-
 
+
-
Thanks for pointing this out. The snippet code was OK, just it showed just a part of the source file, not whole.
+
-
I fixed that in http://source.apidesign.org/hg/apidesign/rev/e49c5a2d9b32 I'll update the main page soon.
+

JaroslavTulach at 06:41, 11 October 2010 - 2010-10-11 06:41:09

←Older revision Revision as of 06:41, 11 October 2010
Line 5: Line 5:
"... simply add the more complicated way of saying hello to its definition:
"... simply add the more complicated way of saying hello to its definition:
<source lang="java" snippet="design.insert.superclass1"/>
<source lang="java" snippet="design.insert.superclass1"/>
-
<code>
 
-
public '''abstract class''' HelloClass '''extends''' SimpleHelloClass {
 
-
}
 
-
</code>
 
This change is ..."
This change is ..."

JaroslavTulach: /* Chapter 6 */ - 2010-10-10 16:33:54

Chapter 6

←Older revision Revision as of 16:33, 10 October 2010
Line 4: Line 4:
page 90:<br/>
page 90:<br/>
"... simply add the more complicated way of saying hello to its definition:
"... simply add the more complicated way of saying hello to its definition:
 +
<source lang="java" snippet="design.insert.superclass1"/>
<code>
<code>
public '''abstract class''' HelloClass '''extends''' SimpleHelloClass {
public '''abstract class''' HelloClass '''extends''' SimpleHelloClass {
Line 11: Line 12:
should define the complicated sayHelloTo:
should define the complicated sayHelloTo:
-
<code>
+
<source lang="java" snippet="design.insert.superclass2"/>
-
public '''abstract class''' HelloClass '''extends''' SimpleHelloClass {
+
-
'''public abstract''' String sayHelloTo(String who);
+
-
}
+
-
</code>
+
[[User:Cordeo|Cordeo]] 21:47, 7 October 2010 (UTC)
[[User:Cordeo|Cordeo]] 21:47, 7 October 2010 (UTC)
 +
 +
Thanks for pointing this out. The snippet code was OK, just it showed just a part of the source file, not whole.
 +
I fixed that in http://source.apidesign.org/hg/apidesign/rev/e49c5a2d9b32 I'll update the main page soon.

Cordeo: /* Chapter 6 */ - 2010-10-07 21:47:59

Chapter 6

←Older revision Revision as of 21:47, 7 October 2010
Line 16: Line 16:
}
}
</code>
</code>
 +
 +
[[User:Cordeo|Cordeo]] 21:47, 7 October 2010 (UTC)

Cordeo: Erratum page 90 - 2010-10-07 21:47:13

Erratum page 90

←Older revision Revision as of 21:47, 7 October 2010
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>

JaroslavTulach: Removing all content from page - 2009-02-06 21:03:02

Removing all content from page

←Older revision Revision as of 21:03, 6 February 2009
Line 1: Line 1:
-
p. 13, para 2 - should "at its certain revision" be "at its current revision"? --[[User:David Biesack|David Biesack]] 20:25, 5 February 2009 (UTC)
+
 

David Biesack: New page: p. 13, para 2 - should "at its certain revision" be "at its current revision"? --~~~~ - 2009-02-05 20:25:48

New page: p. 13, para 2 - should "at its certain revision" be "at its current revision"? --~~~~

New page

p. 13, para 2 - should "at its certain revision" be "at its current revision"? --[[User:David Biesack|David Biesack]] 20:25, 5 February 2009 (UTC)