
com.extjs.gxt.ui.client.data.DataReader 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
/*
* Ext GWT - Ext for GWT
* Copyright(c) 2007, 2008, Ext JS, LLC.
* [email protected]
*
* http://extjs.com/license
*/
package com.extjs.gxt.ui.client.data;
/**
* Interface for objects that translate raw data into a given type.
*
* @param the config type
* @param the data type
*/
public interface DataReader {
/**
* Reads the raw data and returns the typed data.
*
* @param data the data to read
* @return the data
*/
public D read(C loadConfig, Object data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy