com.extjs.gxt.ui.client.data.Model 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
The newest version!
/*
* Sencha GXT 2.3.1 - Sencha for GWT
* Copyright(c) 2007-2013, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.extjs.gxt.ui.client.data;
/**
* Primary interface for GXT model objects with event support.
*
*
* - Events:
*
* - ChangeEventSource.Update : ChangeEvent(source, name, oldvalue, newvalue)
* Fires after the item is updated.
*
* - source : this
* - name : property name
* - oldvalue : old value
* - newvalue : new value
*
*
*
*
* For a default implementation see {@link BaseModel} or
* {@link BaseTreeModel}.
*/
public interface Model extends ModelData, ChangeEventSource {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy