Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4854ca95828f4d6a8507805537b3f1da81bbdce6 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*******************************************************************************
 * Copyright (c) 2009, 2015 Red Hat Inc.
 * 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:
 *     Red Hat Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.autotools.core.configure;

import java.util.List;

import org.eclipse.cdt.autotools.core.IAutotoolsOption;

public interface IConfigureOption {
	
	int CATEGORY = IAutotoolsOption.CATEGORY;
	int BIN = IAutotoolsOption.BIN;
	int STRING = IAutotoolsOption.STRING;
	int INTERNAL = IAutotoolsOption.INTERNAL;
	int MULTIARG = IAutotoolsOption.MULTIARG;
	int TOOL = IAutotoolsOption.TOOL;
	int FLAG = IAutotoolsOption.FLAG;
	int FLAGVALUE = IAutotoolsOption.FLAGVALUE;
	/**
	 * @since 2.0
	 */
	int ENVVAR = IAutotoolsOption.ENVVAR;

	String getName();

	String getParameter();

	List<String> getParameters();

	boolean isParmSet();

	String getDescription();

	String getToolTip();

	void setValue(String value);

	IConfigureOption copy(AutotoolsConfiguration cfg);

	String getValue();

	boolean isCategory();

	boolean isMultiArg();

	boolean isFlag();

	boolean isFlagValue();

	int getType();
}

Back to the top