package com.jsonde.gui; import com.jsonde.client.Client; import javax.swing.*; import java.awt.*; /** * Created by IntelliJ IDEA. * User: dmitrybedrin * Date: Oct 21, 2009 * Time: 3:16:16 PM * To change this template use File | Settings | File Templates. */ public interface ApplicationUserInterface { void addTab(Component component, String title); Client getClient(); void setClient(Client client); void processException(Throwable e); JFrame getFrame(); }