diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-11-13 15:58:42 +0100 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-11-17 13:41:26 +0100 |
commit | 1da240b65309492730876b70e91dc081e22a7cb2 (patch) | |
tree | 15a60bbce554dab6f90b41fea0dabc30a280ebcb /sonar-ws | |
parent | 1de32aa4798f3246861214ec7f52bfc5f76fd0bb (diff) | |
download | sonarqube-1da240b65309492730876b70e91dc081e22a7cb2.tar.gz sonarqube-1da240b65309492730876b70e91dc081e22a7cb2.zip |
SONAR-6947 Add package-info for quality profiles
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/package-info.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/package-info.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/package-info.java new file mode 100644 index 00000000000..d0313d55de5 --- /dev/null +++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/package-info.java @@ -0,0 +1,25 @@ +/* + * 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.sonarqube.ws.client.qualityprofile; + +import javax.annotation.ParametersAreNonnullByDefault; + |