Back to project page firstcodeandroid.
The source code is released under:
MIT License
If you think the Android project firstcodeandroid 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.jikexueyuan.getmyphonenumber; /*from ww w .ja v a2 s . c om*/ public class PhoneInfo { private String name; private String number; public PhoneInfo(String name,String number) { setNumber(number); setName(name); } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getNumber() { return number; } public void setNumber(String number) { this.number = number; } }