001package com.credibledoc.substitution.reporting.reportdocument; 002 003/** 004 * Marker interface. 005 * <p> 006 * Each generated {@link ReportDocument} should have its type. This type is used 007 * in the {@link com.credibledoc.substitution.reporting.visualizer.VisualizerService} for decision 008 * to process a particular {@link ReportDocument} or skip it. 009 * 010 * @author Kyrylo Semenko 011 */ 012public interface ReportDocumentType { 013 // empty 014}