Back to project page WarDroid.
The source code is released under:
MIT License
If you think the Android project WarDroid 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.deathsnacks.wardroid.gson.badlands; /*from w w w .j a v a 2s. c o m*/ import com.google.gson.annotations.Expose; public class DeploymentActivationTime { @Expose private Integer sec; @Expose private Integer usec; public Integer getSec() { return sec; } public void setSec(Integer sec) { this.sec = sec; } public Integer getUsec() { return usec; } public void setUsec(Integer usec) { this.usec = usec; } }