Back to project page TextSpam.
The source code is released under:
Apache License
If you think the Android project TextSpam 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.andrew749.textspam; /*w w w. j av a2 s . c om*/ import java.io.Serializable; /** * Created by andrew on 25/06/13. */ public class Custom implements Serializable { String phonenumber; public Custom(String number) { phonenumber = number; } public String getPhoneNumber() { return phonenumber; } }