Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlena Laskavaia2009-04-09 12:48:44 +0000
committerAlena Laskavaia2009-04-09 12:48:44 +0000
commit26460663849b0b09ee3f642691d8f90b9f8f9834 (patch)
tree2684107e7865337d81c7f002527e164fab8a4485 /codan/org.eclipse.cdt.codan.checkers/plugin.xml
parent724390a35fbce63e3a2a6e4ae6457b64e26b3284 (diff)
downloadorg.eclipse.cdt-26460663849b0b09ee3f642691d8f90b9f8f9834.tar.gz
org.eclipse.cdt-26460663849b0b09ee3f642691d8f90b9f8f9834.tar.xz
org.eclipse.cdt-26460663849b0b09ee3f642691d8f90b9f8f9834.zip
initial commit
Diffstat (limited to 'codan/org.eclipse.cdt.codan.checkers/plugin.xml')
-rw-r--r--codan/org.eclipse.cdt.codan.checkers/plugin.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/codan/org.eclipse.cdt.codan.checkers/plugin.xml b/codan/org.eclipse.cdt.codan.checkers/plugin.xml
new file mode 100644
index 00000000000..99cf3432354
--- /dev/null
+++ b/codan/org.eclipse.cdt.codan.checkers/plugin.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<plugin>
+ <extension
+ point="org.eclipse.cdt.codan.core.checkers">
+
+ <checker
+ class="org.eclipse.cdt.codan.checkers.sample.AssignmentInConditionChecker"
+ id="org.eclipse.cdt.codan.checkers.checker1"
+ name="Assignment in condition">
+ <problem
+ defaultSeverity="Warning"
+ id="org.eclipse.cdt.codan.checkers.sample.assignment_in_condition"
+ name="Assignment in condition">
+ </problem>
+ </checker>
+ </extension>
+
+</plugin>

Back to the top