Skip to content

Commit

Permalink
- finished implementation of UserDataDirectory V2
Browse files Browse the repository at this point in the history
- 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
Show file tree
Hide file tree
Showing 25 changed files with 1,438 additions and 248 deletions.
28 changes: 28 additions & 0 deletions src/com/atech/data/AbstractTimeDataDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:
* andy@atech-software.com
*
* @author Andy
*
*/
public class AbstractTimeDataDto implements Comparable<AbstractTimeDataDto>
{

Expand Down
28 changes: 28 additions & 0 deletions src/com/atech/data/FileDirectoryDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:
* andy@atech-software.com
*
* @author Andy
*
*/
public class FileDirectoryDto {

private String fileName;
Expand Down
29 changes: 28 additions & 1 deletion src/com/atech/data/GsonUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:
* andy@atech-software.com
*
* @author Andy
*
*/
public class GsonUtils
{

Expand Down
28 changes: 28 additions & 0 deletions src/com/atech/data/NotImplementedException.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:
* andy@atech-software.com
*
* @author Andy
*
*/
public class NotImplementedException extends RuntimeException
{

Expand Down
28 changes: 28 additions & 0 deletions src/com/atech/data/SimpleTimeValueDataDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:
* andy@atech-software.com
*
* @author Andy
*
*/
public class SimpleTimeValueDataDto extends AbstractTimeDataDto
{

Expand Down
28 changes: 28 additions & 0 deletions src/com/atech/data/UnknownStringArrayDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:
* andy@atech-software.com
*
* @author Andy
*
*/
public class UnknownStringArrayDto extends ArrayList<String>
{
}
Loading

0 comments on commit fa9b961

Please sign in to comment.