Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a1497b15ee3cc9c9638b9f3f347ab842856ccef4 (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
/*******************************************************************************
 * Copyright (c) 2013 Freescale Semiconductor 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:
 *     Serge Beauchamp (Freescale Semiconductor) - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.ui.newui;


/**
 * Interface provides an additional method to the CDT model property page.
 * 
 * @see ICPropertyProvider
 * @since 5.7
 */

public interface ICPropertyProvider2 extends ICPropertyProvider {
	
	/**
	 * Return the selected tab, or null if the select tab isn't initialized
	 * @return the select tab in the page
	 */
	ICPropertyTab getSelectedTab();
}

Back to the top