Selaa lähdekoodia

activities: Added copyright headers

eho 7 vuotta sitten
vanhempi
commit
07770a2268
17 muutettua tiedostoa jossa 307 lisäystä ja 0 poistoa
  1. 18 0
      src/main/java/com/owncloud/android/ui/activities/ActivitiesActivity.java
  2. 18 0
      src/main/java/com/owncloud/android/ui/activities/ActivitiesContract.java
  3. 19 0
      src/main/java/com/owncloud/android/ui/activities/ActivitiesPresenter.java
  4. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/Injection.java
  5. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/activities/ActivitiesRepository.java
  6. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/activities/ActivitiesServiceApi.java
  7. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/activities/ActivitiesServiceApiImpl.java
  8. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/activities/ActivityRepositories.java
  9. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/activities/RemoteActivitiesRepository.java
  10. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/files/FileRepositories.java
  11. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/files/FilesRepository.java
  12. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/files/FilesServiceApi.java
  13. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/files/FilesServiceApiImpl.java
  14. 18 0
      src/main/java/com/owncloud/android/ui/activities/data/files/RemoteFilesRepository.java
  15. 18 0
      src/test/java/com/owncloud/android/ui/activities/ActivitiesPresenterTest.java
  16. 18 0
      src/test/java/com/owncloud/android/ui/activities/data/activities/RemoteActivitiesRepositoryTest.java
  17. 18 0
      src/test/java/com/owncloud/android/ui/activities/data/files/RemoteFilesRepositoryTest.java

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/ActivitiesActivity.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities;
 
 import android.content.Intent;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/ActivitiesContract.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities;
 
 import com.owncloud.android.datamodel.OCFile;

+ 19 - 0
src/main/java/com/owncloud/android/ui/activities/ActivitiesPresenter.java

@@ -1,3 +1,22 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 package com.owncloud.android.ui.activities;
 
 import android.support.annotation.NonNull;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/Injection.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data;
 
 import com.owncloud.android.ui.activities.data.activities.ActivitiesRepository;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/activities/ActivitiesRepository.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.activities;
 
 import android.support.annotation.NonNull;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/activities/ActivitiesServiceApi.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.activities;
 
 import com.owncloud.android.lib.common.OwnCloudClient;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/activities/ActivitiesServiceApiImpl.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.activities;
 
 import android.accounts.Account;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/activities/ActivityRepositories.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.activities;
 
 import android.support.annotation.NonNull;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/activities/RemoteActivitiesRepository.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.activities;
 
 import android.support.annotation.NonNull;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/files/FileRepositories.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.files;
 
 import android.support.annotation.NonNull;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/files/FilesRepository.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.files;
 
 import android.support.annotation.NonNull;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/files/FilesServiceApi.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.files;
 
 import com.owncloud.android.datamodel.OCFile;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/files/FilesServiceApiImpl.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.files;
 
 import android.accounts.Account;

+ 18 - 0
src/main/java/com/owncloud/android/ui/activities/data/files/RemoteFilesRepository.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.files;
 
 import android.support.annotation.NonNull;

+ 18 - 0
src/test/java/com/owncloud/android/ui/activities/ActivitiesPresenterTest.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities;
 
 import com.owncloud.android.datamodel.OCFile;

+ 18 - 0
src/test/java/com/owncloud/android/ui/activities/data/activities/RemoteActivitiesRepositoryTest.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.activities;
 
 import com.owncloud.android.lib.common.OwnCloudClient;

+ 18 - 0
src/test/java/com/owncloud/android/ui/activities/data/files/RemoteFilesRepositoryTest.java

@@ -1,3 +1,21 @@
+/**
+ *   Nextcloud Android client application
+ *
+ *   Copyright (C) 2018 Edvard Holst
+ *
+ *   This program is free software; you can redistribute it and/or
+ *   modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ *   License as published by the Free Software Foundation; either
+ *   version 3 of the License, or 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 AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ *   You should have received a copy of the GNU Affero General Public
+ *   License along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 package com.owncloud.android.ui.activities.data.files;
 
 import com.owncloud.android.datamodel.OCFile;