Skip to content
Snippets Groups Projects
Commit 470099d3 authored by Jakub Kolman's avatar Jakub Kolman
Browse files

[#81] documantation: added author

parent 5de17b10
No related branches found
No related tags found
No related merge requests found
Showing
with 39 additions and 66 deletions
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.procrustes;
/**
*
* @author kubok
*/
public class ProcrustesAnalysis {
public ProcrustesAnalysis() {
}
}
...@@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType; ...@@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType;
/** /**
* *
* @author kubok * @author Jakub Kolman
*/ */
@XmlRootElement @XmlRootElement
......
package cz.fidentis.analyst.feature; package cz.fidentis.analyst.feature;
/**
*
* @author Jakub Kolman
*/
public class FeaturePointType { public class FeaturePointType {
private final int type; private final int type;
private final String name; private final String name;
......
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.feature.services; package cz.fidentis.analyst.feature.services;
import cz.fidentis.analyst.feature.FeaturePoint; import cz.fidentis.analyst.feature.FeaturePoint;
import cz.fidentis.analyst.feature.FeaturePointType;
import cz.fidentis.analyst.feature.utils.FeaturePointFileFormatTypes; import cz.fidentis.analyst.feature.utils.FeaturePointFileFormatTypes;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException; import java.io.IOException;
import java.util.List; import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import cz.fidentis.analyst.feature.services.FeaturePointsCsvExporter;
import cz.fidentis.analyst.feature.services.FeaturePointsFpExporter;
/** /**
* Class used for exporting feature points from file * Class used for exporting feature points from file
* *
* for more details @see cz.fidentis.analyst.feature.services.FeaturePointsCsvExporter or @see cz.fidentis.analyst.feature.services.FeaturePointsFpExporter * for more details @see cz.fidentis.analyst.feature.services.FeaturePointsCsvExporter or @see cz.fidentis.analyst.feature.services.FeaturePointsFpExporter
* *
* @author kubok * @author Jakub Kolman
*/ */
public class FeaturePointExportService { public class FeaturePointExportService {
......
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.feature.services; package cz.fidentis.analyst.feature.services;
import cz.fidentis.analyst.feature.FeaturePoint;
import cz.fidentis.analyst.feature.exception.FeaturePointException;
import cz.fidentis.analyst.feature.provider.FeaturePointTypeProvider;
import cz.fidentis.analyst.feature.utils.FileResourcesUtils;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.stream.Stream;
/** /**
* *
* @author kubok * @author Jakub Kolman
*/ */
public class FeaturePointImportService { public class FeaturePointImportService {
......
...@@ -5,7 +5,6 @@ import cz.fidentis.analyst.feature.utils.FileResourcesUtils; ...@@ -5,7 +5,6 @@ import cz.fidentis.analyst.feature.utils.FileResourcesUtils;
import java.io.*; import java.io.*;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Optional; import java.util.Optional;
import java.util.Scanner; import java.util.Scanner;
...@@ -13,6 +12,10 @@ import java.util.function.Function; ...@@ -13,6 +12,10 @@ import java.util.function.Function;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import java.util.stream.Stream; import java.util.stream.Stream;
/**
*
* @author Jakub Kolman
*/
public class FeaturePointTypesService { public class FeaturePointTypesService {
private static final String FILE_NAME = "fp_text_default.csv"; private static final String FILE_NAME = "fp_text_default.csv";
......
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.feature.services; package cz.fidentis.analyst.feature.services;
import cz.fidentis.analyst.feature.FeaturePoint; import cz.fidentis.analyst.feature.FeaturePoint;
...@@ -17,7 +12,7 @@ import java.util.logging.Logger; ...@@ -17,7 +12,7 @@ import java.util.logging.Logger;
/** /**
* Class used to export feature points to file of csv format * Class used to export feature points to file of csv format
* *
* @author kubok * @author Jakub Kolman
*/ */
public class FeaturePointsCsvExporter { public class FeaturePointsCsvExporter {
......
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.feature.services; package cz.fidentis.analyst.feature.services;
import cz.fidentis.analyst.feature.FeaturePoint; import cz.fidentis.analyst.feature.FeaturePoint;
...@@ -22,7 +17,7 @@ import java.util.stream.Stream; ...@@ -22,7 +17,7 @@ import java.util.stream.Stream;
/** /**
* Class used to import feature points from file of csv format * Class used to import feature points from file of csv format
* *
* @author kubok * @author Jakub Kolman
*/ */
public class FeaturePointsCsvLoader { public class FeaturePointsCsvLoader {
......
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.feature.services; package cz.fidentis.analyst.feature.services;
import cz.fidentis.analyst.feature.FeaturePoint; import cz.fidentis.analyst.feature.FeaturePoint;
...@@ -18,7 +13,7 @@ import java.util.logging.Logger; ...@@ -18,7 +13,7 @@ import java.util.logging.Logger;
/** /**
* Class used to export feature points to file of fp format * Class used to export feature points to file of fp format
* *
* @author kubok * @author Jakub Kolman
*/ */
public class FeaturePointsFpExporter { public class FeaturePointsFpExporter {
......
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.feature.services; package cz.fidentis.analyst.feature.services;
import cz.fidentis.analyst.feature.FeaturePoint; import cz.fidentis.analyst.feature.FeaturePoint;
...@@ -21,7 +16,7 @@ import java.util.stream.Stream; ...@@ -21,7 +16,7 @@ import java.util.stream.Stream;
/** /**
* Class used to import feature points from file of fp format * Class used to import feature points from file of fp format
* *
* @author kubok * @author Jakub Kolman
*/ */
public class FeaturePointsFpLoader { public class FeaturePointsFpLoader {
......
...@@ -7,7 +7,7 @@ package cz.fidentis.analyst.feature.utils; ...@@ -7,7 +7,7 @@ package cz.fidentis.analyst.feature.utils;
/** /**
* *
* @author kubok * @author Jakub Kolman
*/ */
public class FeaturePointFileFormatTypes { public class FeaturePointFileFormatTypes {
......
package cz.fidentis.analyst.feature.utils; package cz.fidentis.analyst.feature.utils;
import java.io.*; import java.io.*;
import java.net.URI;
import java.net.URISyntaxException; import java.net.URISyntaxException;
import java.net.URL; import java.net.URL;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.nio.file.Files; import java.nio.file.Files;
import java.util.List; import java.util.List;
/**
*
* @author Jakub Kolman
*/
public class FileResourcesUtils { public class FileResourcesUtils {
public static void main(String[] args) throws IOException, URISyntaxException { public static void main(String[] args) throws IOException, URISyntaxException {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment