/** * Sencha GXT 3.0.0b - Sencha for GWT * Copyright(c) 2007-2012, Sencha, Inc. * licensing@sencha.com * * http://www.sencha.com/products/gxt/license/ */ package com.sencha.gxt.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); }