Sha256: 3d86997bc928beec7e99be3824b8d7c098025069d4aa41ee89ff206cbc0665ef
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
/** * Sencha GXT 3.1.1 - Sencha for GWT * Copyright(c) 2007-2014, Sencha, Inc. * licensing@sencha.com * * http://www.sencha.com/products/gxt/license/ */ package com.dldinternet.aws.cfn.stacker.desktopapp.client; import com.google.gwt.editor.client.Editor; import com.google.gwt.editor.client.SimpleBeanEditorDriver; /** * Provides a profile update view capable of displaying current profile settings * and receiving updates from a user. The view uses the GWT Editor / Driver * framework so that presenter does not need to know too many details of the * view's implementation and the view does not need to know too many details * about the models structure. * * See <a * href='http://code.google.com/webtoolkit/doc/latest/DevGuideUiEditors.html'> * GWT Editors and Drivers</a> for more information. */ public interface ProfileView { /** * Provides access to the GWT Editor / Driver framework so that the presenter * can copy data to and from the view without knowing too many details of the * view or the view knowing too many details of the model. * * @return an editor driver capable of copying model data to / from the view */ SimpleBeanEditorDriver<ProfileModel, Editor<? super ProfileModel>> getProfileDriver(); /** * Hides the view. */ void hide(); /** * Informs the user that the Editor / Driver framework reported that there are * field validation errors. */ void onValidationError(); /** * Shows the view. */ void show(); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aws-cfn-stacker-0.0.6 | ui/src/com/dldinternet/aws/cfn/stacker/desktopapp/client/ProfileView.java |