Back to project page CallNotifier.
The source code is released under:
Apache License
If you think the Android project CallNotifier 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.hevsoft.callnotiffier; // www. j ava 2 s .co m import java.util.Date; /** * Created by elvis.iulian on 11/11/2014. */ public class Subject extends Contact { public Date callDate ; public Subject(String name,String nr){ super(name,nr); } public void setDate(){ callDate = new Date(System.currentTimeMillis()); } }