View Javadoc

1   package net.sf.josceleton.core.api.entity.message;
2   
3   import net.sf.josceleton.core.api.entity.Coordinate;
4   import net.sf.josceleton.core.api.entity.User;
5   import net.sf.josceleton.core.api.entity.joint.Joint;
6   
7   /**
8    * @since 0.1
9    */
10  public interface JointMessage extends GenericMessage {
11  
12  	/**
13  	 * @since 0.1
14  	 */
15  	User getUser();
16  	
17  	/**
18  	 * @since 0.1
19  	 */
20  	Joint getJoint();
21  
22  	/**
23  	 * @since 0.1
24  	 */
25  	Coordinate getCoordinate();
26  	
27  }