mirror of
https://github.com/frosch95/SmartCSV.fx.git
synced 2026-04-11 13:38:23 +02:00
fixed some class comments
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -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> {
|
||||||
|
|
||||||
|
|||||||
@@ -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>> {
|
||||||
|
|||||||
@@ -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>> {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user