Back to project page palhike.
The source code is released under:
GNU General Public License
If you think the Android project palhike 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.palhike.android; //from w ww. j ava 2 s .c om public class TreeViewData { String _title; public String get_title() { return _title; } public void set_title(String _title) { this._title = _title; } public String get_titleEnglish() { return _titleEnglish; } public void set_titleEnglish(String _titleEnglish) { this._titleEnglish = _titleEnglish; } public String get_description() { return _description; } public void set_description(String _description) { this._description = _description; } public String get_scientificName() { return _scientificName; } public void set_scientificName(String _scientificName) { this._scientificName = _scientificName; } public String get_num_images() { return _num_images; } public void set_num_images(String _num_images) { this._num_images = _num_images; } public byte[] get_image1() { return _image1; } public void set_image1(byte[] _image1) { this._image1 = _image1; } public byte[] get_image2() { return _image2; } public void set_image2(byte[] _image2) { this._image2 = _image2; } public byte[] get_image3() { return _image3; } public void set_image3(byte[] _image3) { this._image3 = _image3; } public byte[] get_image4() { return _image4; } public void set_image4(byte[] _image4) { this._image4 = _image4; } public byte[] get_image5() { return _image5; } public void set_image5(byte[] _image5) { this._image5 = _image5; } String _titleEnglish; String _description; String _scientificName; String _num_images; byte[] _image1; byte[] _image2; byte[] _image3; byte[] _image4; byte[] _image5; }