View Javadoc

1   package cz.cuni.amis.pogamut.multi.communication.worldview.object;
2   
3   
4   /**
5    * General interface for local parts of objects whose visiblility may change over time.
6    * (since isVisible is most certainly a local property)
7    * @author srlok
8    *
9    */
10  public interface ILocalViewable extends ILocalWorldObject {
11  	
12  	/**
13  	 * Tells whether the object is currently visible.
14  	 * @return
15  	 */
16  	public boolean isVisible();
17  }