All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.labbol.cocoon.msg.JsonComboData Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
/**
 * 
 */
package com.labbol.cocoon.msg;

/**
 * @author PengFei
 *
 */
public class JsonComboData {

	private String text;
	private String value;

	public JsonComboData() {}

	public JsonComboData(String text, String value) {
		this.text = text;
		this.value = value;
	}

	public String getText() {
		return this.text;
	}

	public void setText(String text) {
		this.text = text;
	}

	public String getValue() {
		return this.value;
	}

	public void setValue(String value){
		this.value = value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy