Back to project page android.
The source code is released under:
Apache License
If you think the Android project android 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.github.digin.android.models; /*from w w w. j a v a 2s. c o m*/ /** * Created by david on 7/16/14. */ public class TemporaryParticipantPlaceholder extends Participant { String name; public TemporaryParticipantPlaceholder(String name) { this.name = name; setName(name); } @Override public String toString() { return name; } }