1 /******************************************************************************* 2 * Copyright (c) 2009, 2015 Mountainminds GmbH & Co. KG and Contributors 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 *******************************************************************************/ 12 package org.jacoco.report.internal.html.index; 13 14 import org.jacoco.report.internal.html.ILinkable; 15 16 /** 17 * Every report page that should become part of the index must be added via this 18 * interface. 19 */ 20 public interface IIndexUpdate { 21 22 /** 23 * Adds a class to the index. 24 * 25 * @param link 26 * link to the class 27 * @param classid 28 * identifier of the class 29 */ addClass(ILinkable link, long classid)30 public void addClass(ILinkable link, long classid); 31 32 } 33