diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-03-12 00:47:54 +0300 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-03-12 00:47:54 +0300 |
commit | ae629d3f581216ffd2ba8f50242d0330297056a6 (patch) | |
tree | a25ee46fbe5330a34446a54aa12b3036f139926b | |
parent | a0c39b6e623876693382842b1d9ec7534f453059 (diff) | |
download | sonarqube-ae629d3f581216ffd2ba8f50242d0330297056a6.tar.gz sonarqube-ae629d3f581216ffd2ba8f50242d0330297056a6.zip |
Add license headers
4 files changed, 76 insertions, 0 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/events/DecoratorsPhaseEvent.java b/sonar-batch/src/main/java/org/sonar/batch/events/DecoratorsPhaseEvent.java index 34d92419c49..d88468c47aa 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/events/DecoratorsPhaseEvent.java +++ b/sonar-batch/src/main/java/org/sonar/batch/events/DecoratorsPhaseEvent.java @@ -1,3 +1,22 @@ +/* + * Sonar, open source software quality management tool. + * Copyright (C) 2008-2011 SonarSource + * mailto:contact AT sonarsource DOT com + * + * Sonar 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. + * + * Sonar 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 Sonar; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 + */ package org.sonar.batch.events; import org.sonar.api.batch.Decorator; diff --git a/sonar-batch/src/main/java/org/sonar/batch/events/DecoratorsPhaseHandler.java b/sonar-batch/src/main/java/org/sonar/batch/events/DecoratorsPhaseHandler.java index 9c118e9c63b..73b2a689f61 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/events/DecoratorsPhaseHandler.java +++ b/sonar-batch/src/main/java/org/sonar/batch/events/DecoratorsPhaseHandler.java @@ -1,3 +1,22 @@ +/* + * Sonar, open source software quality management tool. + * Copyright (C) 2008-2011 SonarSource + * mailto:contact AT sonarsource DOT com + * + * Sonar 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. + * + * Sonar 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 Sonar; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 + */ package org.sonar.batch.events; public interface DecoratorsPhaseHandler extends EventHandler { diff --git a/sonar-batch/src/main/java/org/sonar/batch/events/SensorsPhaseEvent.java b/sonar-batch/src/main/java/org/sonar/batch/events/SensorsPhaseEvent.java index 09ef80c7965..04fbcb37ad4 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/events/SensorsPhaseEvent.java +++ b/sonar-batch/src/main/java/org/sonar/batch/events/SensorsPhaseEvent.java @@ -1,3 +1,22 @@ +/* + * Sonar, open source software quality management tool. + * Copyright (C) 2008-2011 SonarSource + * mailto:contact AT sonarsource DOT com + * + * Sonar 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. + * + * Sonar 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 Sonar; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 + */ package org.sonar.batch.events; import org.sonar.api.batch.Sensor; diff --git a/sonar-batch/src/main/java/org/sonar/batch/events/SensorsPhaseHandler.java b/sonar-batch/src/main/java/org/sonar/batch/events/SensorsPhaseHandler.java index 256d24e3d55..74be799aa2e 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/events/SensorsPhaseHandler.java +++ b/sonar-batch/src/main/java/org/sonar/batch/events/SensorsPhaseHandler.java @@ -1,3 +1,22 @@ +/* + * Sonar, open source software quality management tool. + * Copyright (C) 2008-2011 SonarSource + * mailto:contact AT sonarsource DOT com + * + * Sonar 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. + * + * Sonar 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 Sonar; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 + */ package org.sonar.batch.events; public interface SensorsPhaseHandler extends EventHandler { |