Back to project page lastUpdates.
The source code is released under:
GNU General Public License
If you think the Android project lastUpdates 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.focusings.focusingsworld.notificationManagement; //from w w w . j a v a2 s . c om public class Update { private String title; private String channel; private int tabNumber; public Update(String title, String channel, int tabNumber) { this.title = title; this.channel=channel; this.tabNumber=tabNumber; } public String getTitle() { return title; } public String getChannel() { return channel; } public int getTabNumber() { return tabNumber; } }