public class ConditionalStatement extends Statement
With an odd number of expressions {c0, e0, c1, e1, ..., cn-1, en-1, en} represents "if (c0) e0 else if (c1) e1 ... else en"; with an even number of expressions {c0, e0, c1, e1, ..., cn-1, en-1} represents "if (c0) e0 else if (c1) e1 ... else if (cn-1) en-1".
| Modifier and Type | Field and Description |
|---|---|
List<Node> |
expressionList |
nodeType, type| Constructor and Description |
|---|
ConditionalStatement(List<Node> expressionList) |
Copyright © 2012–2015 The Apache Software Foundation. All rights reserved.