Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 143f288b228dfef6633ed32945f282ba9257bc5c (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
/*******************************************************************************
 * Copyright (c) 2007 Intel Corporation and others.
 * 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
 *
 * Contributors:
 * Intel Corporation - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.core.settings.model;

import java.util.List;

import org.eclipse.cdt.core.model.IPathEntry;
import org.eclipse.cdt.core.model.IPathEntryContainer;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;

public class ConfigBasedPathEntryContainer implements IPathEntryContainer {
	public static final IPath CONTAINER_PATH = new Path("org.eclipse.cdt.core.CFG_BASED_CONTAINER");	//$NON-NLS-1$
	private IPathEntry[] fEntries;

	public ConfigBasedPathEntryContainer(List<IPathEntry> list){
		this.fEntries = list.toArray(new IPathEntry[list.size()]);
	}

	public ConfigBasedPathEntryContainer(IPathEntry entries[]){
		this.fEntries = entries.clone();
	}
	
	public String getDescription() {
		return "Configuration Description info container";	//$NON-NLS-1$
	}

	public IPath getPath() {
		return CONTAINER_PATH;
	}

	public IPathEntry[] getPathEntries() {
		return fEntries.clone();
	}

}

Back to the top