public Profile() { this.idProperty = new SimpleLongProperty(); this.targetUrlProperty = new SimpleStringProperty(); this.actionProperty = new SimpleStringProperty(); this.parameterProperty = new SimpleMapProperty<String, String>(); this.nameProperty = new SimpleStringProperty(); }
@NotNull @Override protected MapProperty<K, V> createProperty(ObservableMap<K, V> deserializedValue) { return new SimpleMapProperty<>(deserializedValue); }
WithMapIntProp(ObservableMap<Integer, CustomObject> value) { this.prop = new SimpleMapProperty<>(value); }
WithMapStrProp(ObservableMap<String, CustomObject> value) { this.prop = new SimpleMapProperty<>(value); }
/** * Creates a MulticastServer by given port to listen. */ public SubnetServer() { mUserList = new SimpleMapProperty<>(FXCollections.observableHashMap()); }
public MapProperty<Variable<Number>, TopsoilDataColumn> selectionsProperty() { if (selectionsProperty == null) { selectionsProperty = new SimpleMapProperty<>(FXCollections.observableHashMap()); } return selectionsProperty; }
/** * Gets the read-only user list property. * <p> * You can bind or attach listener to this property, but since it is * readonly, you can not change the values.</p> * * @return */ public SimpleMapProperty<Integer, Client> userListProperty() { return mUserList; }