| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| RealTag |
|
| 1.0;1 |
| 1 | package org.jaudiotagger.audio.real; | |
| 2 | ||
| 3 | import org.jaudiotagger.audio.generic.GenericTag; | |
| 4 | import org.jaudiotagger.tag.TagField; | |
| 5 | import org.jaudiotagger.tag.TagFieldKey; | |
| 6 | import org.jaudiotagger.tag.KeyNotFoundException; | |
| 7 | import org.jaudiotagger.tag.FieldDataInvalidException; | |
| 8 | ||
| 9 | 13 | public class RealTag extends GenericTag |
| 10 | { | |
| 11 | public String toString() | |
| 12 | { | |
| 13 | 0 | String output = "REAL " + super.toString(); |
| 14 | 0 | return output; |
| 15 | } | |
| 16 | ||
| 17 | ||
| 18 | } |