Back to project page EnterpriseShow.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project EnterpriseShow 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.ruixinyuan.producttrainingfinal.bean; /* www. j av a 2 s. c o m*/ import android.content.Intent; /* *@user vicentliu *@time 2013-6-8????2:39:51 *@package com.ruixinyuan.producttrainingfinal.bean */ public class TabItemBean { private String title; private int icon; private int bg; private Intent intent; public TabItemBean(String title, int icon, int bg, Intent intent) { super(); this.title = title; this.icon = icon; this.bg = bg; this.intent = intent; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getIcon() { return icon; } public void setIcon(int icon) { this.icon = icon; } public int getBg() { return bg; } public void setBg(int bg) { this.bg = bg; } public Intent getIntent() { return intent; } public void setIntent(Intent intent) { this.intent = intent; } }