1 /* 2 * joey and its relative products are published under the terms 3 * of the Apache Software License. 4 * 5 * Created on 2004/06/05 2:28:05 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 EntityPointer { 17 18 public Serializable getPointedKey(); 19 public void setPointedKey(Serializable key); 20 21 public void setPointedEntity(Entity entity); 22 }