Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e4267286fe064d2732e3787e8f76cfed061dd667 (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
/*******************************************************************************
 * Copyright (c) 2008, 2015 Nokia Corporation.
 * 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:
 *    Ed Swartz (Nokia) - initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.autotools.ui.editors.parser;

/**
 * This is a macro argument node.  It may also hold
 * other AutoconfMacroElements.  The source range includes any quotes around an argument
 * but the #getName() has them stripped.
 * @author eswartz
 *
 */
public class AutoconfMacroArgumentElement extends AutoconfElement {

	public AutoconfMacroArgumentElement() {
		super(""); // //$NON-NLS-N$
	}
	public AutoconfMacroArgumentElement(String name) {
		super(name);
	}
}

Back to the top