Back to project page CallLog.
The source code is released under:
GNU General Public License
If you think the Android project CallLog 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.kaosh.calllog; /*from w w w . jav a2s.c om*/ public class HotlineObj { protected String mNumber; protected float mRate; public HotlineObj(String number, float rate) { mNumber = number; mRate = rate; } }