com.terapico.caf.wxappviewcomponent.WxappText Maven / Gradle / Ivy
The newest version!
package com.terapico.caf.wxappviewcomponent;
import java.util.Map;
public class WxappText extends BaseWxappViewComponent{
protected String text;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public WxappText withText(String text) {
this.setText(text);
return this;
}
@Override
protected void mapFieldsToMap(Map resultMap) {
putInMap(resultMap, "text", text);
}
@Override
public String getType() {
return "text";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy