blob: 42758c6b93c495def5e0057a93ba9b12a58f4083 [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;
/**
* If statement AST node type.
*
* Range 0: first character of "if" keyword through last character of
* the last statement.
* Range 1: first character of "else" keyword through last character of
* the last statement; if "else" keyword is absent then an empty range
*
* <pre>
* IfStatement:
* <b>if</b> <b>(</b> Expression <b>)</b> Statement [ <b>else</b> Statement]
* </pre>
*
* @since 2.0
*/
public class IfStatement extends Statement {
/**
* The expression; lazily initialized; defaults to an unspecified, but
* legal, expression.
*/
private Expression expression = null;
/**
* The then statement; lazily initialized; defaults to an unspecified, but
* legal, statement.
*/
private Statement thenStatement = null;
/**
* The else statement; <code>null</code> for none; defaults to none.
*/
private Statement optionalElseStatement = null;
/**
* Creates a new unparented if statement node owned by the given
* AST. By default, the expresssion is unspecified,
* but legal, the then statement is an empty block, and there is no else
* statement.
* <p>
* N.B. This constructor is package-private.
* </p>
*
* @param ast the AST that is to own this node
*/
IfStatement(AST ast) {
super(ast);
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
public int getNodeType() {
return IF_STATEMENT;
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
ASTNode clone(AST target) {
IfStatement result = new IfStatement(target);
result.setLeadingComment(getLeadingComment());
result.setExpression((Expression) getExpression().clone(target));
result.setThenStatement(
(Statement) getThenStatement().clone(target));
result.setElseStatement(
(Statement) ASTNode.copySubtree(target, getElseStatement()));
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) {
// visit children in normal left to right reading order
acceptChild(visitor, getExpression());
acceptChild(visitor, getThenStatement());
acceptChild(visitor, getElseStatement());
}
visitor.endVisit(this);
}
/**
* Returns the expression of this if statement.
*
* @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 condition of this if statement.
*
* @param expression the expression node
* @exception IllegalArgumentException if the node belongs to a different AST
* @exception IllegalArgumentException if the node already has a parent
* @exception IllegalArgumentException if a cycle in would be created
*/
public void setExpression(Expression expression) {
if (expression == null) {
throw new IllegalArgumentException();
}
// an IfStatement may occur inside an Expression - must check cycles
replaceChild(this.expression, expression, true);
this.expression = expression;
}
/**
* Returns the "then" part of this if statement.
*
* @return the "then" statement node
*/
public Statement getThenStatement() {
if (thenStatement == null) {
// lazy initialize - use setter to ensure parent link set too
setThenStatement(new Block(getAST()));
}
return thenStatement;
}
/**
* Sets the "then" part of this if statement.
*
* @param statement the "then" statement node
* @exception IllegalArgumentException if the node belongs to a different AST
* @exception IllegalArgumentException if the node already has a parent
* @exception IllegalArgumentException if a cycle in would be created
*/
public void setThenStatement(Statement statement) {
if (statement == null) {
throw new IllegalArgumentException();
}
// an IfStatement may occur inside a Statement - must check cycles
replaceChild(this.thenStatement, statement, true);
this.thenStatement = statement;
}
/**
* Returns the "else" part of this if statement, or <code>null</code> if
* this if statement has <b>no</b> "else" part.
* <p>
* Note that there is a subtle difference between having no else
* statement and having an empty statement ("{}") or null statement (";").
* </p>
*
* @return the "else" statement node, or <code>null</code> if none
*/
public Statement getElseStatement() {
return optionalElseStatement;
}
/**
* Sets or clears the "else" part of this if statement.
* <p>
* Note that there is a subtle difference between having no else part
* (as in <code>"if(true){}"</code>) and having an empty block (as in
* "if(true){}else{}") or null statement (as in "if(true){}else;").
* </p>
*
* @param statement the "else" statement node, or <code>null</code> if
* there is none
* @exception IllegalArgumentException if the node belongs to a different AST
* @exception IllegalArgumentException if the node already has a parent
* @exception IllegalArgumentException if a cycle in would be created
*/
public void setElseStatement(Statement statement) {
// an IfStatement may occur inside a Statement - must check cycles
replaceChild(this.optionalElseStatement, statement, true);
this.optionalElseStatement = statement;
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
int memSize() {
return super.memSize() + 3 * 4;
}
/* (omit javadoc for this method)
* Method declared on ASTNode.
*/
int treeSize() {
return
memSize()
+ (expression == null ? 0 : getElseStatement().treeSize())
+ (thenStatement == null ? 0 : getThenStatement().treeSize())
+ (optionalElseStatement == null ? 0 : getElseStatement().treeSize());
}
}