1 /* 2 * Cobertura - http://cobertura.sourceforge.net/ 3 * 4 * Copyright (C) 2003 jcoverage ltd. 5 * Copyright (C) 2005 Mark Doliner 6 * 7 * Cobertura is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published 9 * by the Free Software Foundation; either version 2 of the License, 10 * or (at your option) any later version. 11 * 12 * Cobertura is distributed in the hope that it will be useful, but 13 * WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with Cobertura; if not, write to the Free Software 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 20 * USA 21 */ 22 23 package net.sourceforge.cobertura.coveragedata; 24 25 /** 26 * Tag interface indicating that a particular class has already been 27 * instrumented. This interface should also be implemented by those 28 * classes that do not wish to be instrumented. 29 */ 30 public interface HasBeenInstrumented 31 { 32 /* 33 * This class does not need any members. If a given class implements 34 * this class, it means the given class does not want to be instrumented 35 * by Cobertura. 36 */ 37 }