Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cba5d0acad2d8628b73279b7a28a71a8404a1bf9 (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
/*******************************************************************************
 * Copyright (c) 2017 Obeo.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Obeo - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.core;

/**
 * A prototype attributes label provider is contributed as an optional attribute
 * of a <code>launchConfigurationType</code> extension and is responsible for
 * displaying launch configurations prototype attributes of that type.
 *
 * @since 3.12
 */
public interface IPrototypeAttributesLabelProvider {

	/**
	 * Get a human readable label to associate to this attribute.
	 *
	 * @param attribute the given attribute.
	 * @return a human readable label of this attribute.
	 */
	String getAttributeLabel(String attribute);
}

Back to the top