package com.habitsoft.kiyaa.views;
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
* Extension of View for the somewhat common case of a View
* that has getModel() and setModel().
*/
publicinterface ModelView<T> extends View {
public T getModel();
publicvoid setModel(T model, AsyncCallback<Void> callback);
}