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; // w w w .j a va2 s.com import java.io.Serializable; /** * Created by elvis.iulian on 11/10/2014. */ public class Contact implements Serializable{ public String name; public String phone; public Contact(String name,String nr){ this.name = name; this.phone = nr; } @Override public boolean equals(Object b){ if(b instanceof Contact){ return ((Contact)b).phone.equals(phone) ; } return false; } }