Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1e11612a49e261637ba4439e8fd91b59d88bfcd0 (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
/*******************************************************************************
 * Copyright (c) 2014 Wind River Systems, Inc. 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:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.launch.core.bindings.interfaces;

/**
 * Interface to be implemented by a overwritable launch configuration type binding element.
 */
public interface IOverwritableLaunchBinding extends ILaunchBinding {

	/**
	 * Returns if or if not this binding overwrites the given bindings id.
	 *
	 * @param id The id. Must not be <code>null</code>.
	 * @return <code>True</code> if this binding overwrites the given bindings id, <code>false</code> if not.
	 */
	public boolean overwrites(String id);
}

Back to the top