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 ww.j a v a 2s .com public class WidgetAttribute { private String attrName; private String attrValue; public WidgetAttribute(String AttrName, String AttrValue) { attrName = AttrName; attrValue = AttrValue; } public String getAttrName() { return attrName; } public void setAttrName(String AttrName) { attrName = AttrName; } public String getAttrValue() { return attrValue; } public void setAttrValue(String AttrValue) { attrValue = AttrValue; } }