com.extjs.gxt.ui.client.widget.grid.SummaryRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxt Show documentation
Show all versions of gxt Show documentation
Rich Internet Application Framework for GWT
/*
* Sencha GXT 2.3.1a - Sencha for GWT
* Copyright(c) 2007-2013, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.extjs.gxt.ui.client.widget.grid;
import java.util.Map;
/**
* Returns the rendered content for a summary row.
*/
public interface SummaryRenderer {
/**
* Returns the html content for the summary row.
*
* @param value the summary calculation
* @param data the data for the group
* @return the html content
*/
public String render(Number value, Map data);
}