You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
714 B
41 lines
714 B
5 years ago
|
package xyz.wbsite.dbtool.javafx.po;
|
||
|
|
||
5 years ago
|
public class DocParam {
|
||
5 years ago
|
private String name;
|
||
5 years ago
|
private String tupe;
|
||
5 years ago
|
private String note;
|
||
|
private boolean required;
|
||
|
|
||
|
public String getName() {
|
||
|
return name;
|
||
|
}
|
||
|
|
||
|
public void setName(String name) {
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
public String getNote() {
|
||
|
return note;
|
||
|
}
|
||
|
|
||
|
public void setNote(String note) {
|
||
|
this.note = note;
|
||
|
}
|
||
|
|
||
|
public boolean isRequired() {
|
||
|
return required;
|
||
|
}
|
||
|
|
||
|
public void setRequired(boolean required) {
|
||
|
this.required = required;
|
||
|
}
|
||
5 years ago
|
|
||
|
public String getTupe() {
|
||
|
return tupe;
|
||
|
}
|
||
|
|
||
|
public void setTupe(String tupe) {
|
||
|
this.tupe = tupe;
|
||
|
}
|
||
5 years ago
|
}
|