FileDocCategorySizeDatePackage
Info.javaAPI DocExample1663Mon Aug 27 20:12:26 BST 2007com.google.gwt.sample.kitchensink.client

Info

public class Info extends Sink
Introduction page.

Fields Summary
Constructors Summary
public Info()

    initWidget(new Label());
  
Methods Summary
public static SinkInfoinit()

    return new SinkInfo("Intro", "<h2>Introduction to the Kitchen Sink</h2>" +
            "<p>This is the Kitchen Sink sample.  "
        + "It demonstrates many of the widgets in the Google Web Toolkit."
        + "<p>This sample also demonstrates something else really useful in GWT: "
        + "history support.  "
        + "When you click on a tab, the location bar will be "
        + "updated with the current <i>history token</i>, which keeps the app "
        + "in a bookmarkable state.  The back and forward buttons work properly "
        + "as well.  Finally, notice that you can right-click a tab and 'open "
        + "in new window' (or middle-click for a new tab in Firefox).</p></p>") {

      public Sink createInstance() {
        return new Info();
      }
    };
  
public voidonShow()