Coverage details for net.sf.tourviewer.lib.ciclo.CM414M

LineHitsSource
1 package net.sf.tourviewer.lib.ciclo;
2  
322public class CM414M implements CicloDevice {
4  
5     public static final int MAGIC = 0xB723;
6     
7     public String getName()
8     {
90        return "CM 414 Alti M/CM 436 Alti M";
10     }
11  
12     public boolean hasAltitude()
13     {
140        return true;
15     }
16  
17     public boolean hasCadence()
18     {
190        return true;
20     }
21  
22     public boolean hasPulse()
23     {
240        return false;
25     }
26     
27     @Override
28     public String toString()
29     {
300        return getName();
31     }
32  
33     public int getTourBlockIndex()
34     {
3522        return DEFAULT_TOUR_BLOCK_INDEX;
36     }
37  
38     public int getInfoBlockIndex()
39     {
4022        return DEFAULT_INFO_BLOCK_INDEX;
41     }
42     
43 }

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.