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

LineHitsSource
1 package net.sf.tourviewer.ciclo;
2  
3  
4  
5 public class DDRecord extends AbstractRecord {
6  
7     private int aaOffset;
8  
9     public DDRecord(int[] data) {
100        super(data);
11         
120        this.aaOffset = getHex(1);
130    }
14     
15     @Override
16     public String toString()
17     {
180        StringBuffer sb = new StringBuffer();
190        sb.append(getDataString());
200        sb.append(String.format(" [(DD) AAOffset=%d]", aaOffset));
210        return sb.toString();
22     }
23  
24     
25     public int getAAOffset()
26     {
270        return aaOffset;
28     }
29     
30 }

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.