elseStatement property
Return the statement that is executed if the condition evaluates to
false
, or null
if there is no else statement.
Implementation
Statement get elseStatement;
Set the statement that is executed if the condition evaluates to false
to the given statement
.
Implementation
set elseStatement(Statement statement);