All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xq.gwt.mvc.view.PropertyView Maven / Gradle / Ivy

Go to download

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 PropertyView extends ObservableView {    
    public void setError(String errorMessage);
    public void clearError();
    public void setEnabled(boolean enabled);
    public void setRequired(boolean required);
    public void setName(String name);
    public void setTitle(String title);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy