blob: d8f32ce429c08fede4088703b19d88ee6e88d4e6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.jdt.core.dom;
/**
* Parenthesized expression AST node type.
*
* <pre>
* ParenthesizedExpression:
* <b>(</b> Expression <b>)</b>
* </pre>
*
* @since 2.0
*/
public class ParenthesizedExpression extends Expression {
/**
* The expression; lazily initialized; defaults to a unspecified, but legal,
* expression.
*/
private Expression expression = null;
/**
* Creates a new unparented parenthesized expression node owned by the given
* AST. By default, the parenthesized expression has an unspecified, but
* legal, expression.
* <p>
* N.B. This constructor is package-private.
* </p>
*
* @param ast the AST that is to own this node
*/
ParenthesizedExpression(AST ast) {
super(ast);
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
ASTNode clone(AST target) {
ParenthesizedExpression result = new ParenthesizedExpression(target);
result.setExpression((Expression) getExpression().clone(target));
return result;
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
public boolean subtreeMatch(ASTMatcher matcher, Object other) {
// dispatch to correct overloaded match method
return matcher.match(this, other);
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
void accept0(ASTVisitor visitor) {
boolean visitChildren = visitor.visit(this);
if (visitChildren) {
acceptChild(visitor, getExpression());
}
visitor.endVisit(this);
}
/**
* Returns the expression of this parenthesized expression.
*
* @return the expression node
*/
public Expression getExpression() {
if (expression == null) {
// lazy initialize - use setter to ensure parent link set too
setExpression(new SimpleName(getAST()));
}
return expression;
}
/**
* Sets the expression of this parenthesized expression.
*
* @param expression the new expression node
* @exception $precondition-violation:different-ast$
* @exception $precondition-violation:not-unparented$
* @exception $postcondition-violation:ast-cycle$
*/
public void setExpression(Expression expression) {
if (expression == null) {
throw new IllegalArgumentException();
}
// a ParenthesizedExpression may occur inside an Expression
// must check cycles
replaceChild(this.expression, expression, true);
this.expression = expression;
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
int memSize() {
return BASE_NODE_SIZE + 1 * 4;
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
int treeSize() {
return
memSize()
+ (expression == null ? 0 : getExpression().treeSize());
}
}