From 9daf1b80882ae151af02b96f7162e1d022d10b9f Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Mon, 16 Jun 2014 22:35:55 +0200 Subject: [PATCH] Add missing package-info.java files --- .../server/activity/db/package-info.java | 23 +++++++++++++++++++ .../server/activity/index/package-info.java | 23 +++++++++++++++++++ .../sonar/server/activity/package-info.java | 23 +++++++++++++++++++ .../server/activity/ws/package-info.java | 23 +++++++++++++++++++ 4 files changed, 92 insertions(+) create mode 100644 sonar-server/src/main/java/org/sonar/server/activity/db/package-info.java create mode 100644 sonar-server/src/main/java/org/sonar/server/activity/index/package-info.java create mode 100644 sonar-server/src/main/java/org/sonar/server/activity/package-info.java create mode 100644 sonar-server/src/main/java/org/sonar/server/activity/ws/package-info.java diff --git a/sonar-server/src/main/java/org/sonar/server/activity/db/package-info.java b/sonar-server/src/main/java/org/sonar/server/activity/db/package-info.java new file mode 100644 index 00000000000..302c555ca29 --- /dev/null +++ b/sonar-server/src/main/java/org/sonar/server/activity/db/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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 3 of the License, or (at your option) any later version. + * + * SonarQube 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 program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +@ParametersAreNonnullByDefault +package org.sonar.server.activity.db; + +import javax.annotation.ParametersAreNonnullByDefault; diff --git a/sonar-server/src/main/java/org/sonar/server/activity/index/package-info.java b/sonar-server/src/main/java/org/sonar/server/activity/index/package-info.java new file mode 100644 index 00000000000..8cf6626c1f3 --- /dev/null +++ b/sonar-server/src/main/java/org/sonar/server/activity/index/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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 3 of the License, or (at your option) any later version. + * + * SonarQube 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 program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +@ParametersAreNonnullByDefault +package org.sonar.server.activity.index; + +import javax.annotation.ParametersAreNonnullByDefault; diff --git a/sonar-server/src/main/java/org/sonar/server/activity/package-info.java b/sonar-server/src/main/java/org/sonar/server/activity/package-info.java new file mode 100644 index 00000000000..b5e6c868cff --- /dev/null +++ b/sonar-server/src/main/java/org/sonar/server/activity/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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 3 of the License, or (at your option) any later version. + * + * SonarQube 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 program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +@ParametersAreNonnullByDefault +package org.sonar.server.activity; + +import javax.annotation.ParametersAreNonnullByDefault; diff --git a/sonar-server/src/main/java/org/sonar/server/activity/ws/package-info.java b/sonar-server/src/main/java/org/sonar/server/activity/ws/package-info.java new file mode 100644 index 00000000000..f02f1857186 --- /dev/null +++ b/sonar-server/src/main/java/org/sonar/server/activity/ws/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube 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 3 of the License, or (at your option) any later version. + * + * SonarQube 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 program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +@ParametersAreNonnullByDefault +package org.sonar.server.activity.ws; + +import javax.annotation.ParametersAreNonnullByDefault; -- 2.39.5