Back to project page CupidoSMSScheduler.
The source code is released under:
GNU General Public License
If you think the Android project CupidoSMSScheduler 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 it.tapion.cupidosmsscheduler; //www. j a va 2 s.co m public class SMS { // attributi privati private int _id; private String _text; private int _sent; // costruttori public SMS() { } public SMS(String text) { this._text = text; this._sent = 0; } // getter e setter public int get_id() { return _id; } public void set_id(int _id) { this._id = _id; } public String get_text() { return _text; } public void set_text(String _text) { this._text = _text; } public int get_sent() { return _sent; } public void set_sent(int _sent) { this._sent = _sent; } public String toString() { return this.get_text(); } }