cn.nukkit.form.element.ElementLabel Maven / Gradle / Ivy
package cn.nukkit.form.element;
public class ElementLabel extends Element {
private final String type = "label"; //This variable is used for JSON import operations. Do NOT delete :) -- @Snake1999
private String text = "";
public ElementLabel(String text) {
this.text = text;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy