1 /* 2 * joey and its relative products are published under the terms 3 * of the Apache Software License. 4 * 5 * Created on 2004/05/28 4:58:11 6 */ 7 package org.asyrinx.joey.gui; 8 9 import java.io.Serializable; 10 11 import org.asyrinx.joey.om.Entity; 12 13 /*** 14 * @author akima 15 */ 16 public interface EntityEditView extends EntityView { 17 18 public void loadFrom(Object source); 19 public void saveTo(Object dest); 20 21 public Entity getEntity(); 22 public void setEntity(Entity entity); 23 24 public void load(Serializable key); 25 }