Revision: 6245 Author: [email protected] Date: Tue Sep 29 07:49:01 2009 Log: Indexable Showcase now uses IndexableHyperlink.
http://code.google.com/p/google-web-toolkit/source/detail?r=6245 Modified: /branches/crawlability/samples/showcase/src/com/google/gwt/sample/showcase/client/Showcase.java ======================================= --- /branches/crawlability/samples/showcase/src/com/google/gwt/sample/showcase/client/Showcase.java Fri Sep 25 09:27:51 2009 +++ /branches/crawlability/samples/showcase/src/com/google/gwt/sample/showcase/client/Showcase.java Tue Sep 29 07:49:01 2009 @@ -75,6 +75,7 @@ import com.google.gwt.user.client.ui.HasVerticalAlignment; import com.google.gwt.user.client.ui.HorizontalPanel; import com.google.gwt.user.client.ui.Hyperlink; +import com.google.gwt.user.client.ui.IndexableHyperlink; import com.google.gwt.user.client.ui.ListBox; import com.google.gwt.user.client.ui.RootPanel; import com.google.gwt.user.client.ui.TabBar; @@ -416,7 +417,7 @@ AbstractImagePrototype image) { // Create the TreeItem - Hyperlink hl = new Hyperlink(image.getHTML() + " " + content.getName(),true,getContentWidgetToken(content)); + Hyperlink hl = new IndexableHyperlink(image.getHTML() + " " + content.getName(),true,getContentWidgetToken(content)); TreeItem option = parent.addItem(hl); // Map the item to its history token and content widget --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
