Coverage details for net.sf.tourviewer.ciclo.CM414MInfo2Record

LineHitsSource
1 package net.sf.tourviewer.ciclo;
2  
3  
4  
5 public class CM414MInfo2Record extends AbstractRecord {
6  
7     private int nextFreeOffset;
8     private int lastDDOffset;
9     private int totalAltitude;
10  
11     public CM414MInfo2Record(int[] data) {
120        super(data);
13         
140        this.nextFreeOffset = getHex(2);
150        this.lastDDOffset = getHex(3);
160        this.totalAltitude = getHex(4);
170    }
18     
19     public String toString()
20     {
210        return getDataString();
22     }
23  
24     
25     public int getLastDDOffset()
26     {
270        return lastDDOffset;
28     }
29  
30     
31     public int getNextFreeOffset()
32     {
330        return nextFreeOffset;
34     }
35  
36     
37     public int getTotalAltitude()
38     {
390        return totalAltitude;
40     }
41     
42 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.