All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sencha.gxt.data.shared.StringLabelProvider Maven / Gradle / Ivy

/**
 * Ext GWT 3.0.0-beta2 - Ext for GWT
 * Copyright(c) 2007-2011, Sencha, Inc.
 * [email protected]
 *
 * http://sencha.com/license
 */
package com.sencha.gxt.data.shared;

/**
 * A concrete LabelProvider implementation that simple calls
 * toString on the target object.
 * 
 * @param  the target object type
 */
public class StringLabelProvider implements LabelProvider {

  @Override
  public String getLabel(T item) {
    return item.toString();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy