Package com.google.gwt.sample.mobilewebapp.shared

Examples of com.google.gwt.sample.mobilewebapp.shared.TaskProxyImpl


        new CellList<TaskProxy>(new TaskTemplateCell(resources.style().taskTemplateCell()));
    list.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.DISABLED);

    // Create the templates.
    List<TaskProxy> templates = new ArrayList<TaskProxy>();
    templates.add(new TaskProxyImpl("Call mom", null));
    templates.add(new TaskProxyImpl("Register to vote", "Where is my polling location again?"));
    templates.add(new TaskProxyImpl("Replace air filter", "Size: 24x13x1"));
    templates.add(new TaskProxyImpl("Take out the trash", null));
    list.setRowData(templates);

    return list;
  }
View Full Code Here

TOP

Related Classes of com.google.gwt.sample.mobilewebapp.shared.TaskProxyImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.