Hi
ValueChangeHandler is a parameterized interface.

Hence, I think the example given in the Javadoc of Hyperlink should be
changed from:


<http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/Hyperlink.html>public
class HistoryExample implements EntryPoint, ValueChangeHandler {
...
public void onValueChange(ValueChangeEvent event) {
...
}
}


to the following:


public class HistoryExample implements EntryPoint,
ValueChangeHandler<String> {
...
public void onValueChange(ValueChangeEvent event) {
...
}
}


-- 

Hez

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to