Back to project page ZShaolin.
The source code is released under:
GNU General Public License
If you think the Android project ZShaolin listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * To change this template, choose Tools | Templates * and open the template in the editor./*from w w w. j a v a 2 s . c om*/ */ package com.spartacusrex.spartacuside.util; /** * * @author Spartacus Rex */ public class keydata { public int mKeyCode; public long mTime; public keydata(int zKeyCode){ mKeyCode = zKeyCode; mTime = System.currentTimeMillis(); } public keydata(keydata zData){ mKeyCode = zData.mKeyCode; mTime = zData.mTime; } }