Back to project page ChattyOwl.
The source code is released under:
MIT License
If you think the Android project ChattyOwl 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.znupy.chattyowl.models; /*from ww w . ja v a 2s. c o m*/ /** * Created by samok on 28/07/14. */ public class Property { private String name; private String value; public Property(String name, String value) { this.name = name; this.value = value; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getName() { return name; } public void setName(String name) { this.name = name; } }