Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3aa52ce80df5f56696c87d2d46961ca44d0f2d56 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
 * Copyright (c) 2000, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.core.index.impl;

import java.util.ArrayList;

import org.eclipse.cdt.core.index.IIndexDelta;
import org.eclipse.core.resources.IProject;

public class IndexDelta implements IIndexDelta {

	private ArrayList files = null;
	private IProject project = null;
	
	/**
	 * @param filesTrav
	 * @param project
	 * 
	 */
	public IndexDelta(IProject project, ArrayList filesTrav) {
		this.project = project;
		this.files = filesTrav;
	}

	/**
	 * @return Returns the files.
	 */
	public ArrayList getFiles() {
		return files;
	}
	/**
	 * @return Returns the project.
	 */
	public IProject getProject() {
		return project;
	}
}

Back to the top