ModelView.java :  » GWT » kiyaa » com » habitsoft » kiyaa » views » Java Open Source

Java Open Source » GWT » kiyaa 
kiyaa » com » habitsoft » kiyaa » views » ModelView.java
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().
 */
public interface ModelView<T> extends View {

  public T getModel();
  
  public void setModel(T model, AsyncCallback<Void> callback);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.