本文整理汇总了Java中javafx.collections.FXCollections.synchronizedObservableList方法的典型用法代码示例。如果您正苦于以下问题:Java FXCollections.synchronizedObservableList方法的具体用法?Java FXCollections.synchronizedObservableList怎么用?Java FXCollections.synchronizedObservableList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.collections.FXCollections
的用法示例。
在下文中一共展示了FXCollections.synchronizedObservableList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseAliasesEvent
import javafx.collections.FXCollections; //导入方法依赖的package包/类
private void parseAliasesEvent(JsonObject content, String stateKey, int originServerTs, String sender, String eventId, int age) {
if (content.has("aliases") &&
content.get("aliases").isJsonArray()) {
JsonArray aliases = content.getAsJsonArray("aliases");
ObservableList<String> list =
FXCollections.synchronizedObservableList(FXCollections.observableArrayList());
for (JsonElement alias : aliases) {
list.add(alias.getAsString());
}
Event event = addPropertyChangeEvent(originServerTs, sender, eventId, stateKey, age, "aliases", list);
if (isLatestStateEvent(event)) {
if (list.size() == 0){
this.aliasLists.remove(stateKey);
} else{
this.aliasLists.put(stateKey, list);
}
}
}
}
示例2: createCollection
import javafx.collections.FXCollections; //导入方法依赖的package包/类
@Override
protected Object createCollection(Class type) {
if (type == ObservableListWrapper.class) {
return FXCollections.observableArrayList();
}
if (type.getName().indexOf("$") > 0) {
if (type.getName().equals("javafx.collections.FXCollections$SynchronizedObservableList")) {
return FXCollections.synchronizedObservableList(FXCollections.observableArrayList());
}
}
return new SimpleListProperty<>(FXCollections.observableArrayList());
}
示例3: FXThreadedObservableListWrapper
import javafx.collections.FXCollections; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public FXThreadedObservableListWrapper(ObservableList<T> sourceList) {
this.sourceList = sourceList;
this.delegatedList = FXCollections.synchronizedObservableList(FXCollections.observableArrayList());
Platform.runLater(() -> delegatedList.addAll(sourceList.toArray((T[])new Object[sourceList.size()])));
sourceListListener = i -> Platform.runLater(() ->
delegatedList.setAll(sourceList.toArray((T[])new Object[sourceList.size()])));
sourceList.addListener(sourceListListener);
}