View Javadoc
1   package siouxsie.desktop;
2   
3   import javax.swing.JComponent;
4   
5   /**
6    * 
7    * @author Arnaud Cogoluegnes
8    * @version $Id$
9    */
10  public interface IViewHandler {
11  
12  	/**
13  	 * Display the view in the default container
14  	 * @param id
15  	 */
16  	public void displayView(String id);
17  	
18  	/**
19  	 * The default container.
20  	 * @return
21  	 */
22  	public JComponent getDefaultContainer();
23  	
24  	/**
25  	 * Display the application view in the default container.
26  	 * @param appId
27  	 */
28  	public void displayApplicationView(String appId);
29  	
30  }