| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package io.jpress.template;
- public class TplMetadata {
- private String name;
- private String title;
- private String description;
- private String placeholder;
- private String dataType = DATA_TYPE_INPUT;
- public static String DATA_TYPE_INPUT = "input";
- public static String DATA_TYPE_SELECT = "select";
- public static String DATA_TYPE_CHECKBOX = "checkbox";
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public String getPlaceholder() {
- return placeholder;
- }
- public void setPlaceholder(String placeholder) {
- this.placeholder = placeholder;
- }
- public String getDataType() {
- return dataType;
- }
- public void setDataType(String dataType) {
- this.dataType = dataType;
- }
- }
|