diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-09-16 16:30:24 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-09-16 16:30:24 +0200 |
commit | 57ebc479a474152480fb23f6c15fc3e288f6fc88 (patch) | |
tree | 41b1cf1972d249c9d1d28f9d3569bb8ae44ebe49 /sonar-colorizer/src | |
parent | 0bda669ce71b4f7a13e4b37ab5e3b42b6cd63ec6 (diff) | |
download | sonarqube-57ebc479a474152480fb23f6c15fc3e288f6fc88.tar.gz sonarqube-57ebc479a474152480fb23f6c15fc3e288f6fc88.zip |
Add package-info files
Diffstat (limited to 'sonar-colorizer/src')
-rw-r--r-- | sonar-colorizer/src/main/java/org/sonar/colorizer/package-info.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sonar-colorizer/src/main/java/org/sonar/colorizer/package-info.java b/sonar-colorizer/src/main/java/org/sonar/colorizer/package-info.java new file mode 100644 index 00000000000..c6f26127b70 --- /dev/null +++ b/sonar-colorizer/src/main/java/org/sonar/colorizer/package-info.java @@ -0,0 +1,24 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2013 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.colorizer; + +import javax.annotation.ParametersAreNonnullByDefault; + |