Sha256: 472195af7a89ac5ad1bb242746c790f112bcf5fee625ad4bbad39e752775bbc8
Contents?: true
Size: 703 Bytes
Versions: 1
Compression:
Stored size: 703 Bytes
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.user.client.ui.HasWidgets; /** * Base interface for "mini applications" or "desklets" that are displayed on * the desktop. It defines the basic capability required by all mini application * presenters so that they can be displayed and managed by the desktop. */ public interface Presenter { /** * Adds the view managed by this presenter to the user interface. * * @param hasWidgets the user interface */ void go(HasWidgets hasWidgets); }
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/Presenter.java |