Back to project page SimpleStrengthLog.
The source code is released under:
MIT License
If you think the Android project SimpleStrengthLog 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.nomachetejuggling.ssl.model; //from w w w. ja va 2 s .c o m import java.io.Serializable; public class LogEntry implements Serializable { private static final long serialVersionUID = 5995809185162465374L; public String exercise; public int weight; public int reps; public String time; public int oneRepMax() { return (int)(((weight*reps)/30.0)+weight); } }