upload tizen1.0 source
[sdk/ide/product.git] / org.eclipse.cdt.ui / src / org / eclipse / cdt / internal / ui / dialogs / cpaths / CPathIncludeSymbolEntryBasePage.java
1 /*******************************************************************************
2  * Copyright (c) 2004, 2010 IBM Corporation and others.
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  * IBM - Initial API and implementation
10  *******************************************************************************/
11 package org.eclipse.cdt.internal.ui.dialogs.cpaths;
12
13 import java.util.List;
14
15 import org.eclipse.jface.resource.ImageDescriptor;
16
17 import org.eclipse.cdt.core.model.ICElement;
18
19 /**
20  * Abstract DialogPage for C/C++ Project Paths page for 3.X projects.
21  * 
22  * @deprecated as of CDT 4.0. This page was used to set preferences/properties
23  * for 3.X style projects.
24  */
25 @Deprecated
26 public abstract class CPathIncludeSymbolEntryBasePage extends CPathBasePage {
27
28     public CPathIncludeSymbolEntryBasePage(String title) {
29         super(title);
30     }
31
32     public CPathIncludeSymbolEntryBasePage(String title, ImageDescriptor image) {
33         super(title, image);
34     }
35
36     public abstract void init(ICElement cElement, List<CPElement> cPaths);
37     public abstract List<CPElement> getCPaths();
38 }