Files
openide/plugins/javaFX/testData/fieldRefactoring/PropertyRename_after.java

18 lines
422 B
Java

import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
class Test {
private IntegerProperty newName = new SimpleIntegerProperty(this, "count");
public int getNewName() {
return newName.get();
}
public IntegerProperty newNameProperty() {
return newName;
}
public void setNewName(int newName) {
this.newName.set(newName);
}
}