Back to project page digitalcampus.
The source code is released under:
MIT License
If you think the Android project digitalcampus 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.llenguatges.digitalcampus.objects; // w w w . j a v a2 s . c o m public class StudentSubject { public long id; public long stuID; public long subID; /** * Constructor */ public StudentSubject() { id = 0; stuID = 0; subID = 0; } }