gov.wa.wsdot.mobile.client.widget.SimpleListItem.java Source code

Java tutorial

Introduction

Here is the source code for gov.wa.wsdot.mobile.client.widget.SimpleListItem.java

Source

/*
 * Copyright (c) 2014 Washington State Department of Transportation
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 *
 */

package gov.wa.wsdot.mobile.client.widget;

import com.google.gwt.core.client.GWT;
import com.google.gwt.safehtml.client.SafeHtmlTemplates;
import com.google.gwt.safehtml.shared.SafeHtml;
import com.google.gwt.safehtml.shared.SafeHtmlBuilder;
import com.google.gwt.safehtml.shared.SafeHtmlUtils;
import com.googlecode.mgwt.ui.client.widget.list.celllist.Cell;
import gov.wa.wsdot.mobile.client.css.AppBundle;

public abstract class SimpleListItem<T> implements Cell<T> {

    private static Template TEMPLATE = GWT.create(Template.class);

    public interface Template extends SafeHtmlTemplates {
        @SafeHtmlTemplates.Template("<div role=\"button\" tabindex=0 class=\"{0}\"><div></div><div>{1}</div><div>{2}</div></div>")
        SafeHtml content(String class1, SafeHtml description, String lastUpdated);
    }

    @Override
    public void render(SafeHtmlBuilder safeHtmlBuilder, final T model) {
        SafeHtml content = TEMPLATE.content(AppBundle.INSTANCE.css().cellDetails3(),
                SafeHtmlUtils.fromTrustedString(getDisplayDescription(model)),
                SafeHtmlUtils.htmlEscape(getDisplayLastUpdated(model)));

        safeHtmlBuilder.append(content);
    }

    public abstract String getDisplayDescription(T model);

    public abstract String getDisplayLastUpdated(T model);

    @Override
    public boolean canBeSelected(T model) {
        return false;
    }

}