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; /*from ww w .jav a 2 s . c om*/ public class Subject { public long id; public String name; public String description; /** * Constructor */ public Subject() { id = 0; name = "Name"; description = "Description"; } }