
net.ulrice.databinding.directbinding.TableBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ulrice-databinding Show documentation
Show all versions of ulrice-databinding Show documentation
Ulrice-Databinding is a databinding-extension for Ulrice
The newest version!
package net.ulrice.databinding.directbinding;
import java.util.List;
import net.ulrice.databinding.directbinding.table.TableModelAdapter;
class TableBinding {
private final TableModelAdapter tableViewAdapter;
private final List columnBindings;
//TODO private final Predicate _enabledPredicate;
public TableBinding (TableModelAdapter tableViewAdapter, List columnBindings) {
this.tableViewAdapter = tableViewAdapter;
this.columnBindings = columnBindings;
}
public TableModelAdapter getTableViewAdapter () {
return tableViewAdapter;
}
public List getColumnBindings () {
return columnBindings;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy