FileDocCategorySizeDatePackage
Tasks.javaAPI DocExample1436Mon Aug 27 20:12:46 BST 2007com.google.gwt.sample.mail.client

Tasks

public class Tasks extends com.google.gwt.user.client.ui.Composite
Composite that represents a collection of Task items.

Fields Summary
Constructors Summary
public Tasks()

    SimplePanel panel = new SimplePanel();
    VerticalPanel list = new VerticalPanel();
    panel.setWidget(list);
    list.add(new CheckBox("Get groceries"));
    list.add(new CheckBox("Walk the dog"));
    list.add(new CheckBox("Start Web 2.0 company"));
    list.add(new CheckBox("Write cool app in GWT"));
    list.add(new CheckBox("Get funding"));
    list.add(new CheckBox("Take a vacation"));
    initWidget(panel);
    setStyleName("mail-Tasks");
  
Methods Summary