xq.gwt.mvc.view.CommandView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of XqGwtMvc Show documentation
Show all versions of XqGwtMvc Show documentation
A framework for implementing the MVP variant of the Model View Controller design pattern in the context of GWT
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package xq.gwt.mvc.view;
/**
*
* @author admin
*/
public interface CommandView extends ObservableView{
public void setEnabled(boolean enabled);
public void setCaption(String caption);
public void showFeedback(String feedback);
public void reportException(Exception ex);
public void executeStarted();
public void excuteFinished();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy