Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eab636f08e2fa708b951f107b35acee8484ab08c (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
/*******************************************************************************
 * Copyright (c) 2004, 2009 IBM Corporation 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:
 *    Doug Schaefer (IBM) - Initial API and implementation
 *    Markus Schorn (Wind River Systems)
 *******************************************************************************/
package org.eclipse.cdt.core.dom.ast.cpp;

import org.eclipse.cdt.core.dom.ast.ASTNodeProperty;
import org.eclipse.cdt.core.dom.ast.IASTExpression;

/**
 * This is an initializer that is a call to the constructor for the declarator.
 * 
 * @noextend This interface is not intended to be extended by clients.
 * @noimplement This interface is not intended to be implemented by clients.
 */
public interface ICPPASTConstructorInitializer extends ICPPASTInitializer {

	/**
	 * <code>EXPRESSION</code> represents the expression being conusmed in a
	 * constructor.
	 */
	public static final ASTNodeProperty EXPRESSION = new ASTNodeProperty(
			"ICPPASTConstructorInitializer.EXPRESSION - Expression consumed in constructor"); //$NON-NLS-1$

	/**
	 * Get the arguments to the constructor.
	 * 
	 * @return IASTExpression
	 */
	public IASTExpression getExpression();

	/**
	 * Set the arguments to the constructor.
	 * 
	 * @param expression
	 */
	public void setExpression(IASTExpression expression);

	/**
	 * @since 5.1
	 */
	public ICPPASTConstructorInitializer copy();
}

Back to the top