mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
18 lines
411 B
Java
18 lines
411 B
Java
import javafx.beans.property.IntegerProperty;
|
|
import javafx.beans.property.SimpleIntegerProperty;
|
|
|
|
class Test {
|
|
private IntegerProperty c<caret>ount = new SimpleIntegerProperty(this, "count");
|
|
|
|
public int getCount() {
|
|
return count.get();
|
|
}
|
|
|
|
public IntegerProperty countProperty() {
|
|
return count;
|
|
}
|
|
|
|
public void setCount(int count) {
|
|
this.count.set(count);
|
|
}
|
|
} |