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 va 2s .co m public class SubjectMatter { public long id; public String name; public int position; public long subID; /** * Constructor */ public SubjectMatter() { id = 0; name = "name"; position = 0; subID = 0; } }