鉴于我有一个表格视图
,我如何跟踪所有更改,即添加/删除新行,其中一个表格单元格的值已更改,并在检测到任何这些更改时触发相同的事件?
目前,我有下面的代码,它只能在我添加一行时检测到变化。当我编辑任何一行的表单元格和删除一行时,它不能检测到变化。
ObservableList<Trade> observableListOfTrades =FXCollections.observableArrayList();
observableListOfTrades.add(newTrade);
fxTransactionLog.getItems().add(observableListOfTrades.get(observableListOfTrades.size()-1));
observableListOfTrades.addListener(new ListChangeListener() {
@Override
public void onChanged(ListChangeListener.Change change) {
System.out.println("Detected a change! ");
}
});
根据要求,我正在发布我的Trade
类
public class Trade{
// properties
private ObjectProperty<LocalDate> transactionDate;
private StringProperty itemName;
private StringProperty buySell;
private DoubleProperty volume;
private DoubleProperty price;
private DoubleBinding transactionFee;
public Trade(BuySell buySell, LocalDate transactionDate, double volume, double price){
this.buySell = new SimpleStringProperty(buySell.toString());
this.itemName = new SimpleStringProperty("testing");
this.transactionDate = new SimpleObjectProperty<LocalDate>(transactionDate);
this.volume = new SimpleDoubleProperty(volume);
this.price = new SimpleDoubleProperty(price);
}
// getters
public String getBuySell(){
return this.buySell.get();
}
// return Property Object
public StringProperty buySellProperty(){
return this.buySell;
}
// setters
public void setBuySell(String buySell){
this.buySell.set(buySell);
}
public LocalDate getTransactionDate(){
return this.transactionDate.getValue();
}
public ObjectProperty<LocalDate> transactionDateProperty(){
return this.transactionDate;
}
public void setTransactionDate(LocalDate transactionDate){
this.transactionDate.set(transactionDate);
}
public double getVolume(){
return this.volume.get();
}
public DoubleProperty volumeProperty(){
return this.volume;
}
public void setVolume(double volume){
this.volume.set(volume);
}
public double getPrice(){
return this.price.get();
}
public DoubleProperty priceProperty(){
return this.price;
}
public void setPrice(double price){
this.price.set(price);
}
public String getItemName(){
return this.itemName.getValue();
}
public double getTransactionFee(){
this.transactionFee = this.price.multiply(this.volume).multiply(0.15);
return this.transactionFee.getValue();
}
public DoubleBinding transactionFeeProperty(){
return this.transactionFee;
}
public String toString(){
return "Buy: " + getBuySell() + ", Transasction date: " + getTransactionDate() + ", Volume: " + getVolume() + ", Price: " + getPrice() + ", Transaction fee: " + getTransactionFee() ;
}
}
您的侦听器应该响应被删除的项目;如果不是,那么您没有显示的代码可能有问题。
对于ListChangeListener
,要响应属于列表元素的属性更新,需要创建指定提取器的列表。
提取器是一个函数,它接受列表中的一个元素,并返回一个可观察值数组。然后,列表会观察该数组中的所有值,如果这些值发生更改,就会向列表的侦听器触发更新事件。
因此,如果您希望在任何属性发生更改时通知您的侦听器,您可以这样做
ObservableList<Trade> observableListOfTrades =FXCollections.observableArrayList(trade ->
new Observable[] {
trade.transactionDateProperty(),
trade.itemNameProperty(),
trade.buySellProperty(),
trade.volumeProperty(),
trade.priceProperty().
trade.transactionFeeProperty()
});
下面是一个完整的例子,使用通常的“联系人表”示例:
import java.util.function.Function;
import javafx.application.Application;
import javafx.beans.Observable;
import javafx.beans.binding.Bindings;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ListChangeListener.Change;
import javafx.collections.ObservableList;
import javafx.geometry.HPos;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.ColumnConstraints;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.Priority;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class TableViewWithUpdateListenerExample extends Application {
@Override
public void start(Stage primaryStage) {
// Create an observable list with an extractor. This will ensure
// listeners on the list receive notifications if any of the
// properties returned by the extractor belonging to a list element
// are changed:
ObservableList<Person> data = FXCollections.observableArrayList(person ->
new Observable[] {
person.firstNameProperty(),
person.lastNameProperty(),
person.emailProperty()
});
data.addListener((Change<? extends Person> c) -> {
while (c.next()) {
if (c.wasAdded()) {
System.out.println("Added:");
c.getAddedSubList().forEach(System.out::println);
System.out.println();
}
if (c.wasRemoved()) {
System.out.println("Removed:");
c.getRemoved().forEach(System.out::println);
System.out.println();
}
if (c.wasUpdated()) {
System.out.println("Updated:");
data.subList(c.getFrom(), c.getTo()).forEach(System.out::println);
System.out.println();
}
}
});
data.addAll(
new Person("Jacob", "Smith", "jacob.smith@example.com"),
new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
new Person("Ethan", "Williams", "ethan.williams@example.com"),
new Person("Emma", "Jones", "emma.jones@example.com"),
new Person("Michael", "Brown", "michael.brown@example.com")
);
TableView<Person> tableView = new TableView<>();
tableView.setEditable(true);
tableView.setItems(data);
tableView.getColumns().add(column("First Name", Person::firstNameProperty));
tableView.getColumns().add(column("Last Name", Person::lastNameProperty));
tableView.getColumns().add(column("Email", Person::emailProperty));
TextField firstNameTF = new TextField();
TextField lastNameTF = new TextField();
TextField emailTF = new TextField();
Button addButton = new Button("Add");
addButton.setOnAction(e -> {
Person person = new Person(firstNameTF.getText(), lastNameTF.getText(), emailTF.getText());
firstNameTF.setText("");
lastNameTF.setText("");
emailTF.setText("");
data.add(person);
});
GridPane editPane = new GridPane();
editPane.addRow(0, new Label("First Name:"), firstNameTF);
editPane.addRow(1, new Label("Last Name:"), lastNameTF);
editPane.addRow(2, new Label("Email:"), emailTF);
editPane.add(addButton, 0, 3, 2, 1);
ColumnConstraints leftCol = new ColumnConstraints();
leftCol.setHalignment(HPos.RIGHT);
leftCol.setHgrow(Priority.NEVER);
editPane.setHgap(10);
editPane.setVgap(5);
editPane.getColumnConstraints().addAll(leftCol, new ColumnConstraints());
Button deleteButton = new Button("Delete");
deleteButton.setOnAction(e -> data.remove(tableView.getSelectionModel().getSelectedItem()));
deleteButton.disableProperty().bind(Bindings.isEmpty(tableView.getSelectionModel().getSelectedItems()));
VBox root = new VBox(10, tableView, editPane, deleteButton);
root.setAlignment(Pos.CENTER);
primaryStage.setScene(new Scene(root, 800, 600));
primaryStage.show();
}
private TableColumn<Person, String> column(String title, Function<Person, ObservableValue<String>> property) {
TableColumn<Person, String> col = new TableColumn<>(title);
col.setCellValueFactory(cellData -> property.apply(cellData.getValue()));
col.setCellFactory(TextFieldTableCell.forTableColumn());
return col ;
}
public static class Person {
private final StringProperty firstName = new SimpleStringProperty() ;
private final StringProperty lastName = new SimpleStringProperty() ;
private final StringProperty email = new SimpleStringProperty() ;
public Person(String firstName, String lastName, String email) {
setFirstName(firstName);
setLastName(lastName);
setEmail(email);
}
public final StringProperty firstNameProperty() {
return this.firstName;
}
public final java.lang.String getFirstName() {
return this.firstNameProperty().get();
}
public final void setFirstName(final java.lang.String firstName) {
this.firstNameProperty().set(firstName);
}
public final StringProperty lastNameProperty() {
return this.lastName;
}
public final java.lang.String getLastName() {
return this.lastNameProperty().get();
}
public final void setLastName(final java.lang.String lastName) {
this.lastNameProperty().set(lastName);
}
public final StringProperty emailProperty() {
return this.email;
}
public final java.lang.String getEmail() {
return this.emailProperty().get();
}
public final void setEmail(final java.lang.String email) {
this.emailProperty().set(email);
}
@Override
public String toString() {
return getFirstName() + " " + getLastName() + " (" + getEmail() +")";
}
}
public static void main(String[] args) {
launch(args);
}
}
问题内容: 我创建了许多对象,然后将它们存储在列表中。但是我想在一段时间后删除它们,因为我创建了一个新闻,并且不希望我的内存过高(就我而言,如果不删除它,它会跳到20 gigs的内存)。 这里有一些代码来说明我要做什么: A和B是我的对象。C是这两个对象的列表。我正在尝试使用C中的for循环将其删除:一次是使用DEL,另一次是使用一个函数。它似乎不起作用,因为打印继续显示对象。 我需要这个,因为我
在Sybase ASE中完全删除数据库中的所有表而不删除数据库的最佳方法是什么?我一直在使用一个脚本:从这个问题开始,由于引用完整性,我试图删除数据库中的所有表时出错。 在MySQL中,我可以使用 有没有办法在Sybase ASE中实现这一点,或者可以扩展上面的脚本来循环约束?
我刚刚开始使用Google Apps脚本来管理我正在处理的项目的一些工作表,我对Javascript还不熟悉,所以如果我的代码中有任何吼叫,请不要着急!。 我们有一个名为forms2mobile的应用程序,它可以捕获数据并将其放入Google电子表格中。它实际上会根据您使用的应用程序的哪个部分将不同的数据放入不同的工作表中。 我已经拼凑了一个脚本,该脚本从一个工作表(源)中提取所有数据,并仅将某些
问题内容: 如何使用Flask-SQLAlchemy删除单个表中的所有行? 寻找这样的事情: 问题答案: 尝试: 从文档:
我正在创建一个TableView来显示有关自定义对象列表(EntityEvents)的信息。 表视图必须有2列。显示相应EntityEvent名称的第一列。第二列将显示一个按钮。按钮文本依赖于EntityEvent的属性。如果属性为零,则为“创建”,否则为“编辑”。 我做得很好,只是当相应的EntityEvent对象更改时,我找不到更新TableView行的方法。 非常重要:我不能将EntityE
问题内容: 如何使用Java SE从txt文件中删除所有空格和空行? 输入: 输出: 谢谢! 问题答案: 这样的事情怎么样: 注意-未经测试,可能不是完美的语法,但可以为您提供一个思路/方法。 请参阅以下JavaDocs以作参考: http //download.oracle.com/javase/7/docs/api/java/io/FileReader.html http://download