fixed some class comments

This commit is contained in:
Andreas Billmann
2015-12-18 09:00:03 +01:00
parent e3eb684ad9
commit 67f92cd60f
6 changed files with 7 additions and 6 deletions

View File

@@ -40,7 +40,8 @@ import static javafx.application.Platform.runLater;
import static ninja.javafx.smartcsv.fx.util.I18nValidationUtil.getI18nValidatioMessage;
/**
* Created by Andreas on 27.11.2015.
* cell representation which indicates if a cell is valid and not
* and allows editing
*/
public class EditableValidationCell extends TableCell<CSVRow, CSVValue> {

View File

@@ -33,7 +33,7 @@ import ninja.javafx.smartcsv.fx.table.model.CSVRow;
import ninja.javafx.smartcsv.fx.table.model.CSVValue;
/**
* Created by Andreas on 18.11.2015.
* cell value factory for the columns in the tableview
*/
public class ObservableMapValueFactory implements
Callback<TableColumn.CellDataFeatures<CSVRow, CSVValue>, ObjectProperty<CSVValue>> {

View File

@@ -35,7 +35,7 @@ import ninja.javafx.smartcsv.fx.table.model.CSVValue;
import java.util.ResourceBundle;
/**
* Created by Andreas on 18.11.2015.
* cell factory for rendering a value in the cell
*/
public class ValidationCellFactory implements Callback<TableColumn<CSVRow, CSVValue>, TableCell<CSVRow, CSVValue>> {