Styles.java

    1/*******************************************************************************
    2 * Copyright (c) 2009 Mountainminds GmbH & Co. KG and others
    3 * All rights reserved. This program and the accompanying materials
    4 * are made available under the terms of the Eclipse Public License v1.0
    5 * which accompanies this distribution, and is available at
    6 * http://www.eclipse.org/legal/epl-v10.html
    7 *
    8 * Contributors:
    9 *    Marc R. Hoffmann - initial API and implementation
   10 *    
   11 * $Id: $
   12 *******************************************************************************/
   13package org.jacoco.report.html.resources;
   14
   15/**
   16 * Constants for styles defined by the report style sheet.
   17 * 
   18 * @author Marc R. Hoffmann
   19 * @version $Revision: $
   20 */
   21public class Styles {
   22
   23    /** Breadcrumb bar */
   24    public static final String BREADCRUMB = "breadcrumb";
   25
   26    /** Footer */
   27    public static final String FOOTER = "footer";
   28
   29    /** Version Info in Footer */
   30    public static final String VERSIONINFO = "versioninfo";
   31
   32    /** Coverage table */
   33    public static final String COVERAGETABLE = "coverage";
   34
   35    /** Table cells for the first column of a counter */
   36    public static final String CTR1 = "ctr1";
   37
   38    /** Table cells for the second column of a counter */
   39    public static final String CTR2 = "ctr2";
   40
   41    /** Block of source code */
   42    public static final String SOURCE = "source";
   43
   44    /** Line number before each source line */
   45    public static final String NR = "nr";
   46
   47    /** Part of source code that is not covered */
   48    public static final String NOT_COVERED = "nc";
   49
   50    /** Part of source code that is partly covered */
   51    public static final String PARTLY_COVERED = "pc";
   52
   53    /** Part of source code that is fully covered */
   54    public static final String FULLY_COVERED = "fc";
   55
   56}