Java 类javafx.beans.property.SimpleMapProperty 实例源码

项目:auto-web-auth    文件:Profile.java   
public Profile() {
this.idProperty = new SimpleLongProperty();
this.targetUrlProperty = new SimpleStringProperty();
this.actionProperty = new SimpleStringProperty();
this.parameterProperty = new SimpleMapProperty<String, String>();
this.nameProperty = new SimpleStringProperty();
   }
项目:fx-gson    文件:MapPropertyTypeAdapter.java   
@NotNull
@Override
protected MapProperty<K, V> createProperty(ObservableMap<K, V> deserializedValue) {
    return new SimpleMapProperty<>(deserializedValue);
}
项目:fx-gson    文件:TestClassesWithProp.java   
WithMapIntProp(ObservableMap<Integer, CustomObject> value) {
    this.prop = new SimpleMapProperty<>(value);
}
项目:fx-gson    文件:TestClassesWithProp.java   
WithMapStrProp(ObservableMap<String, CustomObject> value) {
    this.prop = new SimpleMapProperty<>(value);
}
项目:Tuntuni    文件:SubnetServer.java   
/**
 * Creates a MulticastServer by given port to listen.
 */
public SubnetServer() {
    mUserList = new SimpleMapProperty<>(FXCollections.observableHashMap());

}
项目:Topsoil    文件:VariableColumnChooser.java   
public MapProperty<Variable<Number>, TopsoilDataColumn> selectionsProperty() {
    if (selectionsProperty == null) {
        selectionsProperty = new SimpleMapProperty<>(FXCollections.observableHashMap());
    }
    return selectionsProperty;
}
项目:Tuntuni    文件:SubnetServer.java   
/**
 * 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;
}