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 a2 s.co m*/ import android.database.Cursor; public class LessonsListModel { public String title; public Cursor cursor; public LessonsListModel() { } public LessonsListModel(String title, Cursor cursor) { this.title = title; this.cursor = cursor; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public Cursor getCursor() { return cursor; } public void setCursor(Cursor cursor) { this.cursor = cursor; } }