修复了文件丢失问题

This commit is contained in:
billkiller
2019-07-04 10:59:17 +08:00
parent 059c5c8193
commit 5cd92e9e8f
13 changed files with 661 additions and 320 deletions

View File

@@ -0,0 +1,33 @@
package cn.edu.scau.biubiusuisui.entity;
import javafx.beans.property.Property;
import javafx.beans.value.ObservableValue;
import java.lang.reflect.Method;
/**
* @Author jack
* @Date:2019/6/28 10:03
*/
public class FXFieldPropertyMapping {
private boolean readOnly;
private Class type;
public boolean isReadOnly() {
return readOnly;
}
public void setReadOnly(boolean readOnly) {
this.readOnly = readOnly;
}
public Class getType() {
return type;
}
public void setType(Class type) {
this.type = type;
}
}