diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-05-20 15:55:34 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-05-20 16:21:10 +0200 |
commit | 28d2cf2e08e4d8dd42904e8fc1db92e50905e54b (patch) | |
tree | 19dec5638bb87720ae45522ebbed1d5cad4cb659 /sonar-ws-client | |
parent | e490ee5188bc25eab1cd03fbd9f2df55301db370 (diff) | |
download | sonarqube-28d2cf2e08e4d8dd42904e8fc1db92e50905e54b.tar.gz sonarqube-28d2cf2e08e4d8dd42904e8fc1db92e50905e54b.zip |
SONAR-5305 Do only one SQL to retun all measures
Diffstat (limited to 'sonar-ws-client')
-rw-r--r-- | sonar-ws-client/src/main/java/org/sonar/wsclient/source/internal/package-info.java | 24 | ||||
-rw-r--r-- | sonar-ws-client/src/main/java/org/sonar/wsclient/source/package-info.java | 24 |
2 files changed, 48 insertions, 0 deletions
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/source/internal/package-info.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/source/internal/package-info.java new file mode 100644 index 00000000000..1a92c5c0269 --- /dev/null +++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/source/internal/package-info.java @@ -0,0 +1,24 @@ +/* + * 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.wsclient.source.internal; + +import javax.annotation.ParametersAreNonnullByDefault; diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/source/package-info.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/source/package-info.java new file mode 100644 index 00000000000..546965bbac9 --- /dev/null +++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/source/package-info.java @@ -0,0 +1,24 @@ +/* + * 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.wsclient.source; + +import javax.annotation.ParametersAreNonnullByDefault; |