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

@@ -30,7 +30,7 @@ import java.io.File;
import java.io.IOException; import java.io.IOException;
/** /**
* Created by Andreas on 19.11.2015. * read some file
*/ */
public interface FileReader { public interface FileReader {
void read(File filename) throws IOException; void read(File filename) throws IOException;

View File

@@ -39,7 +39,7 @@ import java.io.IOException;
import java.util.Map; import java.util.Map;
/** /**
* Created by Andreas on 18.11.2015. * reads the csv file and stores the values in csv model
*/ */
@Service @Service
public class CSVFileReader implements FileReader { public class CSVFileReader implements FileReader {

View File

@@ -40,7 +40,8 @@ import static javafx.application.Platform.runLater;
import static ninja.javafx.smartcsv.fx.util.I18nValidationUtil.getI18nValidatioMessage; 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> { 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; 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 public class ObservableMapValueFactory implements
Callback<TableColumn.CellDataFeatures<CSVRow, CSVValue>, ObjectProperty<CSVValue>> { 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; 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>> { public class ValidationCellFactory implements Callback<TableColumn<CSVRow, CSVValue>, TableCell<CSVRow, CSVValue>> {

View File

@@ -29,7 +29,7 @@ package ninja.javafx.smartcsv.validation;
import java.util.Arrays; import java.util.Arrays;
/** /**
* TODO: DESCRIPTION!!! * Stores the i18n key and possible parameters for validation messages
*/ */
public class ValidationMessage { public class ValidationMessage {