From 99b8618b95ea203afbc46a860187a8fe60bf4d13 Mon Sep 17 00:00:00 2001 From: Schoumi Date: Thu, 16 Jun 2016 17:40:20 +0200 Subject: [PATCH] Add gpl informations in source files --- .../lpcprog/activity/DeviceActivity.java | 18 ++++++++++++++++++ .../mobdev/lpcprog/activity/MainActivity.java | 18 ++++++++++++++++++ .../lpcprog/activity/ServersActivity.java | 2 +- .../lpcprog/adapters/BinariesAdapter.java | 18 ++++++++++++++++++ .../mobdev/lpcprog/adapters/DeviceAdapter.java | 18 ++++++++++++++++++ .../mobdev/lpcprog/adapters/ServerAdapter.java | 18 ++++++++++++++++++ .../fr/mobdev/lpcprog/dialog/ServerDialog.java | 2 +- .../lpcprog/listener/DownloadListener.java | 18 ++++++++++++++++++ .../mobdev/lpcprog/listener/FlashListener.java | 18 ++++++++++++++++++ .../lpcprog/listener/NetworkListener.java | 2 +- .../lpcprog/listener/ServerListener.java | 2 +- .../lpcprog/managers/DatabaseManager.java | 2 +- .../fr/mobdev/lpcprog/managers/IspManager.java | 18 ++++++++++++++++++ .../lpcprog/managers/NetworkManager.java | 18 ++++++++++++++++++ .../lpcprog/managers/UsbCommManager.java | 18 ++++++++++++++++++ .../java/fr/mobdev/lpcprog/objects/Binary.java | 18 ++++++++++++++++++ .../java/fr/mobdev/lpcprog/objects/Parts.java | 18 ++++++++++++++++++ .../java/fr/mobdev/lpcprog/objects/Server.java | 18 ++++++++++++++++++ .../fr/mobdev/lpcprog/objects/USBDevice.java | 18 ++++++++++++++++++ 19 files changed, 257 insertions(+), 5 deletions(-) diff --git a/app/src/main/java/fr/mobdev/lpcprog/activity/DeviceActivity.java b/app/src/main/java/fr/mobdev/lpcprog/activity/DeviceActivity.java index 3c8446d..e67e399 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/activity/DeviceActivity.java +++ b/app/src/main/java/fr/mobdev/lpcprog/activity/DeviceActivity.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.activity; import android.support.design.widget.Snackbar; diff --git a/app/src/main/java/fr/mobdev/lpcprog/activity/MainActivity.java b/app/src/main/java/fr/mobdev/lpcprog/activity/MainActivity.java index 1051ded..e141173 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/activity/MainActivity.java +++ b/app/src/main/java/fr/mobdev/lpcprog/activity/MainActivity.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.activity; import android.content.Intent; diff --git a/app/src/main/java/fr/mobdev/lpcprog/activity/ServersActivity.java b/app/src/main/java/fr/mobdev/lpcprog/activity/ServersActivity.java index 8ec4227..acc6e33 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/activity/ServersActivity.java +++ b/app/src/main/java/fr/mobdev/lpcprog/activity/ServersActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015 Anthony Chomienne, anthony@mob-dev.fr + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/app/src/main/java/fr/mobdev/lpcprog/adapters/BinariesAdapter.java b/app/src/main/java/fr/mobdev/lpcprog/adapters/BinariesAdapter.java index c205e55..4df7fe4 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/adapters/BinariesAdapter.java +++ b/app/src/main/java/fr/mobdev/lpcprog/adapters/BinariesAdapter.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.adapters; import android.app.Activity; diff --git a/app/src/main/java/fr/mobdev/lpcprog/adapters/DeviceAdapter.java b/app/src/main/java/fr/mobdev/lpcprog/adapters/DeviceAdapter.java index 48b1455..fcae6ff 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/adapters/DeviceAdapter.java +++ b/app/src/main/java/fr/mobdev/lpcprog/adapters/DeviceAdapter.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.adapters; import android.support.v7.widget.RecyclerView; diff --git a/app/src/main/java/fr/mobdev/lpcprog/adapters/ServerAdapter.java b/app/src/main/java/fr/mobdev/lpcprog/adapters/ServerAdapter.java index 5d0fe81..4f0f9d9 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/adapters/ServerAdapter.java +++ b/app/src/main/java/fr/mobdev/lpcprog/adapters/ServerAdapter.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.adapters; import android.content.DialogInterface; diff --git a/app/src/main/java/fr/mobdev/lpcprog/dialog/ServerDialog.java b/app/src/main/java/fr/mobdev/lpcprog/dialog/ServerDialog.java index 86c3926..ee39594 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/dialog/ServerDialog.java +++ b/app/src/main/java/fr/mobdev/lpcprog/dialog/ServerDialog.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015 Anthony Chomienne, anthony@mob-dev.fr + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/app/src/main/java/fr/mobdev/lpcprog/listener/DownloadListener.java b/app/src/main/java/fr/mobdev/lpcprog/listener/DownloadListener.java index ef068da..cc99823 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/listener/DownloadListener.java +++ b/app/src/main/java/fr/mobdev/lpcprog/listener/DownloadListener.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.listener; import java.util.EventListener; diff --git a/app/src/main/java/fr/mobdev/lpcprog/listener/FlashListener.java b/app/src/main/java/fr/mobdev/lpcprog/listener/FlashListener.java index 7f6f95e..de6933d 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/listener/FlashListener.java +++ b/app/src/main/java/fr/mobdev/lpcprog/listener/FlashListener.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.listener; import java.util.EventListener; diff --git a/app/src/main/java/fr/mobdev/lpcprog/listener/NetworkListener.java b/app/src/main/java/fr/mobdev/lpcprog/listener/NetworkListener.java index db899b9..669e7df 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/listener/NetworkListener.java +++ b/app/src/main/java/fr/mobdev/lpcprog/listener/NetworkListener.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015 Anthony Chomienne, anthony@mob-dev.fr + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/app/src/main/java/fr/mobdev/lpcprog/listener/ServerListener.java b/app/src/main/java/fr/mobdev/lpcprog/listener/ServerListener.java index ee29859..a836725 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/listener/ServerListener.java +++ b/app/src/main/java/fr/mobdev/lpcprog/listener/ServerListener.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015 Anthony Chomienne, anthony@mob-dev.fr + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/app/src/main/java/fr/mobdev/lpcprog/managers/DatabaseManager.java b/app/src/main/java/fr/mobdev/lpcprog/managers/DatabaseManager.java index 76c818c..e9019c4 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/managers/DatabaseManager.java +++ b/app/src/main/java/fr/mobdev/lpcprog/managers/DatabaseManager.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015 Anthony Chomienne, anthony@mob-dev.fr + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/app/src/main/java/fr/mobdev/lpcprog/managers/IspManager.java b/app/src/main/java/fr/mobdev/lpcprog/managers/IspManager.java index 041fd08..d8b0516 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/managers/IspManager.java +++ b/app/src/main/java/fr/mobdev/lpcprog/managers/IspManager.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.managers; import android.content.Context; diff --git a/app/src/main/java/fr/mobdev/lpcprog/managers/NetworkManager.java b/app/src/main/java/fr/mobdev/lpcprog/managers/NetworkManager.java index 44dcd80..b17fa73 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/managers/NetworkManager.java +++ b/app/src/main/java/fr/mobdev/lpcprog/managers/NetworkManager.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.managers; import android.content.Context; diff --git a/app/src/main/java/fr/mobdev/lpcprog/managers/UsbCommManager.java b/app/src/main/java/fr/mobdev/lpcprog/managers/UsbCommManager.java index 4dc697c..f2a724f 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/managers/UsbCommManager.java +++ b/app/src/main/java/fr/mobdev/lpcprog/managers/UsbCommManager.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.managers; import android.content.Context; diff --git a/app/src/main/java/fr/mobdev/lpcprog/objects/Binary.java b/app/src/main/java/fr/mobdev/lpcprog/objects/Binary.java index 5a5bb8e..0c84147 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/objects/Binary.java +++ b/app/src/main/java/fr/mobdev/lpcprog/objects/Binary.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.objects; public class Binary { diff --git a/app/src/main/java/fr/mobdev/lpcprog/objects/Parts.java b/app/src/main/java/fr/mobdev/lpcprog/objects/Parts.java index b857a3f..d6cec55 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/objects/Parts.java +++ b/app/src/main/java/fr/mobdev/lpcprog/objects/Parts.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.objects; public class Parts { diff --git a/app/src/main/java/fr/mobdev/lpcprog/objects/Server.java b/app/src/main/java/fr/mobdev/lpcprog/objects/Server.java index 1993d73..820570a 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/objects/Server.java +++ b/app/src/main/java/fr/mobdev/lpcprog/objects/Server.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.objects; import java.net.URL; diff --git a/app/src/main/java/fr/mobdev/lpcprog/objects/USBDevice.java b/app/src/main/java/fr/mobdev/lpcprog/objects/USBDevice.java index a04618d..2ca6193 100644 --- a/app/src/main/java/fr/mobdev/lpcprog/objects/USBDevice.java +++ b/app/src/main/java/fr/mobdev/lpcprog/objects/USBDevice.java @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2016 Anthony Chomienne, anthony@mob-dev.fr + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + package fr.mobdev.lpcprog.objects; import com.ftdi.j2xx.FT_Device;