Back to project page protohipster.
The source code is released under:
Apache License
If you think the Android project protohipster 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.flipper83.protohipster.feed.datasource.api.model; /*from w ww .ja v a2 s . c om*/ /** * this is the complete user. it isthe title and the complete name. Example Mr John Doe */ public class UserApiName { private String title; private String first; private String last; public String getTitle() { return title; } public String getFirst() { return first; } public String getLast() { return last; } }