View Javadoc
1   package au.gov.amsa.ais;
2   
3   /**
4    * Used to indicate that an AIS message contains a Communications part.
5    * 
6    * @author dxm
7    * 
8    */
9   public interface HasCommunications {
10  
11  	/**
12  	 * Returns the communications part of an AIS Message.
13  	 * 
14  	 * @return
15  	 */
16  	Communications getCommunications();
17  
18  }