Back to project page TAQueue.
The source code is released under:
MIT License
If you think the Android project TAQueue 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.familybiz.greg.taqueue.model.queue; //ww w. ja v a2 s . c o m /** * This represents the information of a TA from the queue. * * Created by Greg Anderson */ public class QueueTA { private String mId; private QueueStudent mStudent; private String mUsername; public QueueTA(String id, QueueStudent student, String username) { mId = id; mStudent = student; mUsername = username; } public String getId() { return mId; } public QueueStudent getStudent() { return mStudent; } public String getUsername() { return mUsername; } }