/** * 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.IsWidget; public interface FileBasedMiniAppView extends IsWidget { void close(); String getValue(); void setTitle(String newTitle); void setValue(String value); }