Back to project page BsuirSchedule.
The source code is released under:
Copyright 2012 Andrei Senchuk Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwar...
If you think the Android project BsuirSchedule 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 net.taviscaron.bsuirschedule.model; // w w w.ja v a 2s. co m public class Schedule { public static final String TABLE_NAME = "Schedule"; // columns public static final String FACULTY_ATTR = "faculty"; public static final String YEAR_ATTR = "year"; public static final String COURSE_ATTR = "course"; public static final String TERM_ATTR = "term"; public static final String STREAM_ATTR = "stream"; public static final String GROUP_ATTR = "stream_group"; public static final String UPDATE_DATE_ATTR = "update_date"; }