Back to project page SipgateInfo.
The source code is released under:
GNU General Public License
If you think the Android project SipgateInfo 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 net.skweez.sipgate.api; // ww w. j a va 2 s. c om public class UserName { private final String firstName; private final String lastName; public UserName(String firstName, String lastName) { this.firstName = firstName; this.lastName = lastName; } public String getFirstName() { return firstName; } public String getLastName() { return lastName; } /** {@inheritDoc} */ @Override public String toString() { return new StringBuilder(getFirstName()).append(' ') .append(getLastName()).toString(); } }