mirror of
https://github.com/frosch95/SmartCSV.fx.git
synced 2026-04-11 21:48:22 +02:00
19 lines
372 B
Java
19 lines
372 B
Java
|
|
package ninja.javafx.smartcsv.validation;
|
||
|
|
|
||
|
|
import ninja.javafx.smartcsv.fx.table.model.ColumnValueProvider;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author abi
|
||
|
|
*/
|
||
|
|
public class TestColumnValueProvider implements ColumnValueProvider {
|
||
|
|
@Override
|
||
|
|
public String getValue(int row, String column) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public int getNumberOfRows() {
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
}
|