Back to project page Common-Library.
The source code is released under:
Apache License
If you think the Android project Common-Library 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.morgan.library.model; //from w ww. j ava 2 s . co m /** * {@link com.morgan.library.widget.PopupMenuWidget}????ListView?model?? * * @author Morgan.Ji * */ public class SpinnerItem { private int mResId; private String mText; private boolean mHideImg; public int getResId() { return mResId; } public void setResId(int mResId) { this.mResId = mResId; } public String getText() { return mText; } public void setText(String mText) { this.mText = mText; } public boolean isHideImg() { return mHideImg; } public void setHideImg(boolean mHideImg) { this.mHideImg = mHideImg; } }