| 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 | ||
| 5 | 60 | public class RealTag extends GenericTag |
| 6 | { | |
| 7 | public String toString() | |
| 8 | { | |
| 9 | 0 | String output = "REAL " + super.toString(); |
| 10 | 0 | return output; |
| 11 | } | |
| 12 | ||
| 13 | ||
| 14 | } |