-
Type:
Improvement
-
Status: Resolved
-
Priority:
Minor
-
Resolution: Invalid
-
Affects Version/s: 5.0.10
-
Fix Version/s: None
-
Component/s: Documentation
-
Labels:None
http://tapestry.apache.org/tapestry5/tutorial1/hilo.html
The code that is proposed to be added is slightly incomplete:
-------------------------------------------------------------------------------------------
Let's fix this problem, by adding the following to the Guess class:
public int getTarget()
{ return _target; }-------------------------------------------------------------------------------------------
It should be like this:
-------------------------------------------------------------------------------------------
Let's fix this problem, by adding the following to the Guess class:
private int _target;
public int getTarget()
{ return _target; }
-------------------------------------------------------------------------------------------