Back to project page Gui2Go.
The source code is released under:
MIT License
If you think the Android project Gui2Go 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.ami.gui2go.models; /* w w w . j av a 2s . c o m*/ public class Widget { private String tag; private int icon; public Widget(String tag, int icon) { this.setTag(tag); this.setIcon(icon); } public String getTag() { return tag; } public void setTag(String tag) { this.tag = tag; } public int getIcon() { return icon; } public void setIcon(int icon) { this.icon = icon; } }