基本上,我想编辑Eclipse,以便在生成getter和setter时为IntegerProperty绝对主义添加类似下面代码的内容,以便为值和属性添加getter和setter。
public int getAbsolutism()
{
return absolutism.get();
}
public void setAbsolutism(int abs)
{
absolutism.setValue(abs);
}
public IntegerProperty getAbsolutismProperty() {
return absolutism;
}
public void setAbsolutismProperty(IntegerProperty absolutism) {
this.absolutism = absolutism;
}