Skip to content

Commit

Permalink
fix TalkerId javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
ktuukkan committed Apr 6, 2020
1 parent d9216e5 commit da3b562
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main/java/net/sf/marineapi/nmea/sentence/TalkerId.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
package net.sf.marineapi.nmea.sentence;

/**
* The enumeration of Talker IDs, the first two characters of sentence
* address field. For example, {@code GP} in {@code $GPGGA}. Notice
* that proprietary sentences are identified by single character {@link #P}.
* <p>
* Notice that this enum contains also some non-standard IDs to enable parsing
* certain proprietary sentences that do not use {@link #P} identifier.
* The enumeration of Talker IDs, i.e. the first two characters of sentence
* address field. For example, {@code GP} in {@code $GPGGA}. Proprietary
* sentences are identified by single character {@link #P}.
* <p>
* The IDs marked as <em>obsolete</em> are deprecated and not recommended for
* use in new implementations. However, they are not annotated with {@code
* @Deprecated} to avoid unnecessary compiler warnings when working with
* &commat;Deprecated} to avoid unnecessary compiler warnings when working with
* legacy systems/data.
* <p>
* Notice that this enum also contains some non-standard IDs to enable parsing
* certain proprietary sentences that do not use {@link #P} identifier.
*
* @author Kimmo Tuukkanen
* @see net.sf.marineapi.nmea.sentence.SentenceId
Expand Down Expand Up @@ -98,7 +98,7 @@ public enum TalkerId {
DU,
/** Electronic Chart System (ECS) */
EC,
/** Electronic Chart Display & Information System (ECDIS) */
/** Electronic Chart Display &amp; Information System (ECDIS) */
EI,
/** Emergency Position Indicating Beacon (EPIRB) */
EP,
Expand Down

0 comments on commit da3b562

Please sign in to comment.