Back to project page SleepGuard.
The source code is released under:
GNU General Public License
If you think the Android project SleepGuard listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.szabolcs.szijarto.sleepguard; /* w ww .java2 s.c o m*/ import java.util.Date; public class HeartRateRec implements java.io.Serializable { private static final long serialVersionUID = 19742001L; public final int seqno; public final Date timestamp; public final byte pulse; public final int heartbeats; public HeartRateRec ( int s, Date t, byte p, int h) { seqno = s; timestamp = t; pulse = p; heartbeats = h; } }