View Javadoc

1   package cz.cuni.amis.pogamut.multi.communication.worldview.object;
2   
3   import cz.cuni.amis.pogamut.base.communication.worldview.object.IWorldObject;
4   import cz.cuni.amis.pogamut.multi.communication.translator.event.ILocalWorldObjectUpdatedEvent;
5   
6   /**
7    * General interface for all localWorldObjects
8    * @author srlok
9    *
10   */
11  public interface ILocalWorldObject extends IWorldObject, Cloneable {
12  	
13  	public ILocalWorldObject clone();
14  	
15  	//public ILocalWorldObjectUpdatedEvent createUpdateEvent( long time);
16  	
17  	public Class getCompositeClass();
18  	
19  	
20  }