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; //from w ww . j av a2s.c om /** * Represents all the information for a student as well as all the actions a student can perform. * * Created by Greg Anderson */ public class Student extends User { private String mLocation; public Student(String username, String id, String token, String location) { super(username, id, token); mLocation = location; } @Override public String getUserType() { return STUDENT; } public String getLocation() { return mLocation; } }