1
2
3
4
5
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 }