Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1c0f37780480837f928fe0256f37c81fab99a5a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * Copyright (C) 2012, Matthias Sohn <matthias.sohn@sap.com>
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/
package org.eclipse.egit.ui.internal.history;

import org.eclipse.jgit.revwalk.RevCommit;

/**
 * Callback interface for incrementally loading table items
 */
public interface TableLoader {
	/**
	 * @param index hint for index of table item to be loaded
	 */
	void loadItem(int index);

	/**
	 * @param c commit to be loaded
	 */
	void loadCommit(RevCommit c);
}

Back to the top