-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- finished implementation of UserDataDirectory V2
- updated some other file with file comments - fixes to some files in com/atech/utils/file/ package
- Loading branch information
andy.rozman
committed
Apr 9, 2024
1 parent
c949d9a
commit fa9b961
Showing
25 changed files
with
1,438 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,34 @@ | |
/** | ||
* Created by andy on 15.10.15. | ||
*/ | ||
/** | ||
* This file is part of ATech Tools library. | ||
* | ||
* Copyright (C) 2015 Andy (Aleksander) Rozman (Atech-Software) | ||
* | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
* | ||
* For additional information about this project please visit our project site on | ||
* https://github.com/andyrozman/atech-tools or contact us via this email: | ||
* [email protected] | ||
* | ||
* @author Andy | ||
* | ||
*/ | ||
public class AbstractTimeDataDto implements Comparable<AbstractTimeDataDto> | ||
{ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,34 @@ | |
/** | ||
* Created by andy on 27/01/18. | ||
*/ | ||
/** | ||
* This file is part of ATech Tools library. | ||
* | ||
* Copyright (C) 2018 Andy (Aleksander) Rozman (Atech-Software) | ||
* | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
* | ||
* For additional information about this project please visit our project site on | ||
* https://github.com/andyrozman/atech-tools or contact us via this email: | ||
* [email protected] | ||
* | ||
* @author Andy | ||
* | ||
*/ | ||
public class FileDirectoryDto { | ||
|
||
private String fileName; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,34 @@ | |
import com.google.gson.JsonArray; | ||
import com.google.gson.JsonElement; | ||
import com.google.gson.JsonParser; | ||
|
||
/** | ||
* This file is part of ATech Tools library. | ||
* | ||
* Copyright (C) 2024 Andy (Aleksander) Rozman (Atech-Software) | ||
* | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
* | ||
* For additional information about this project please visit our project site on | ||
* https://github.com/andyrozman/atech-tools or contact us via this email: | ||
* [email protected] | ||
* | ||
* @author Andy | ||
* | ||
*/ | ||
public class GsonUtils | ||
{ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,34 @@ | |
/** | ||
* Created by andy on 22.12.15. | ||
*/ | ||
/** | ||
* This file is part of ATech Tools library. | ||
* | ||
* Copyright (C) 2015 Andy (Aleksander) Rozman (Atech-Software) | ||
* | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
* | ||
* For additional information about this project please visit our project site on | ||
* https://github.com/andyrozman/atech-tools or contact us via this email: | ||
* [email protected] | ||
* | ||
* @author Andy | ||
* | ||
*/ | ||
public class NotImplementedException extends RuntimeException | ||
{ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,34 @@ | |
/** | ||
* Created by andy on 15.10.15. | ||
*/ | ||
/** | ||
* This file is part of ATech Tools library. | ||
* | ||
* Copyright (C) 2015 Andy (Aleksander) Rozman (Atech-Software) | ||
* | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
* | ||
* For additional information about this project please visit our project site on | ||
* https://github.com/andyrozman/atech-tools or contact us via this email: | ||
* [email protected] | ||
* | ||
* @author Andy | ||
* | ||
*/ | ||
public class SimpleTimeValueDataDto extends AbstractTimeDataDto | ||
{ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,34 @@ | |
/** | ||
* Created by andy on 15.01.16. | ||
*/ | ||
/** | ||
* This file is part of ATech Tools library. | ||
* | ||
* Copyright (C) 2016 Andy (Aleksander) Rozman (Atech-Software) | ||
* | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
* | ||
* For additional information about this project please visit our project site on | ||
* https://github.com/andyrozman/atech-tools or contact us via this email: | ||
* [email protected] | ||
* | ||
* @author Andy | ||
* | ||
*/ | ||
public class UnknownStringArrayDto extends ArrayList<String> | ||
{ | ||
} |
Oops, something went wrong.