1 package net.sf.tourviewer.lib; 2 3 public interface Device { 4 5 String getName(); 6 7 boolean hasAltitude(); 8 9 boolean hasCadence(); 10 11 boolean hasPulse(); 12 13 }