From e0b37227dbc3c6f9668acae286348d738c55349b Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 13 Feb 2013 18:38:33 +0100 Subject: SONAR-1896 update property descriptions --- .../main/java/org/sonar/plugins/core/CorePlugin.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java index 55ff57b0b00..0f5c04e004a 100644 --- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java +++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java @@ -175,8 +175,8 @@ import java.util.List; category = CoreProperties.CATEGORY_GENERAL), @Property( key = CoreProperties.PROJECT_INCLUSIONS_PROPERTY, - name = "File Inclusions", - description = "Define the file sources to analyze", + name = "Source File Inclusions", + description = "Patterns used to include some source files and only those ones during analysis", project = true, global = true, multiValues = true, @@ -184,28 +184,28 @@ import java.util.List; @Property( key = CoreProperties.PROJECT_TEST_INCLUSIONS_PROPERTY, name = "Test File Inclusions", - description = "Define the test files to analyze", + description = "Patterns used to include some test files and only those ones during analysis", project = true, global = true, multiValues = true, category = CoreProperties.CATEGORY_EXCLUSIONS), @Property( key = CoreProperties.GLOBAL_EXCLUSIONS_PROPERTY, - name = "Global source exclusions", - description = "Exclude sources from code analysis. Applies to every project. Cannot be overriden. Changes will be applied during next code analysis.", + name = "Global Source File Exclusions", + description = "Patterns used to exclude some source files from analysis. They apply to every project and cannot be overriden.", multiValues = true, category = CoreProperties.CATEGORY_EXCLUSIONS), @Property( key = CoreProperties.GLOBAL_TEST_EXCLUSIONS_PROPERTY, name = "Global Test File Exclusions", - description = "Exclude tests from code analysis. Applies to every project. Cannot be overriden.", + description = "Patterns used to exclude some test files from analysis. They apply to every project and cannot be overriden.", multiValues = true, category = CoreProperties.CATEGORY_EXCLUSIONS, defaultValue = CoreProperties.GLOBAL_TEST_EXCLUSIONS_DEFAULT), @Property( key = CoreProperties.PROJECT_EXCLUSIONS_PROPERTY, - name = "File Exclusions", - description = "Exclude sources from code analysis", + name = "Source File Exclusions", + description = "Patterns used to exclude some source files from analysis", project = true, global = true, multiValues = true, @@ -213,7 +213,7 @@ import java.util.List; @Property( key = CoreProperties.PROJECT_TEST_EXCLUSIONS_PROPERTY, name = "Test File Exclusions", - description = "Exclude tests from code analysis", + description = "Patterns used to exclude some test files from analysis", project = true, global = true, multiValues = true, -- cgit v1.2.3