View Javadoc

1   /*
2    * joey and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/06/03 7:13:20
6    */
7   package org.asyrinx.joey.gui;
8   
9   import org.asyrinx.brownie.swing.content.WindowContent;
10  import org.asyrinx.joey.om.EntityService;
11  
12  /***
13   * @author akima
14   */
15  public interface EntityView extends EntityViewManagerUser, WindowContent {
16  
17  	public Class getEntityClass();
18  
19  	public EntityService getService();
20  	public void setService(EntityService service);
21  
22  	public Object getInvoker();
23  	public void setInvoker(Object invoker);
24  	
25  	public void refresh();
26  	
27  }