/* * Sonar PDF Report (Maven plugin) * Copyright (C) 2010 klicap - ingenieria del puzle * dev@sonar.codehaus.org * * This program 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. * * This program 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 02 */ package org.sonar.report.pdf.util; public class MetricKeys { public static final String PROFILE = "profile"; public static final String DUPLICATED_LINES = "duplicated_lines"; public static final String DUPLICATED_BLOCKS = "duplicated_blocks"; public static final String DUPLICATED_FILES = "duplicated_files"; public static final String CLASSES = "classes"; public static final String COMMENT_LINES = "comment_lines"; public static final String COMPLEXITY = "complexity"; public static final String FUNCTIONS = "functions"; public static final String NCLOC = "ncloc"; public static final String PACKAGES = "packages"; public static final String COVERAGE = "coverage"; public static final String TEST_EXECUTION_TIME = "test_execution_time"; public static final String SKIPPED_TESTS = "skipped_tests"; public static final String TESTS = "tests"; public static final String TEST_ERRORS = "test_errors"; public static final String TEST_FAILURES = "test_failures"; public static final String TEST_SUCCESS_DENSITY = "test_success_density"; public static final String VIOLATIONS = "violations"; public static final String CLASS_COMPLEXITY_DISTRIBUTION = "class_complexity_distribution"; public static final String DUPLICATED_LINES_DENSITY = "duplicated_lines_density"; public static final String CLASS_COMPLEXITY = "class_complexity"; public static final String FUNCTION_COMPLEXITY = "function_complexity"; public static final String COMMENT_LINES_DENSITY = "comment_lines_density"; public static final String VIOLATIONS_DENSITY = "violations_density"; }