Searched defs:elsepart (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java276 JCExpression elsepart)
278 JCConditional tree = new JCConditional(cond, thenpart, elsepart);
283 public JCIf If(JCExpression cond, JCStatement thenpart, JCStatement elsepart) { argument
284 JCIf tree = new JCIf(cond, thenpart, elsepart);
274 Conditional(JCExpression cond, JCExpression thenpart, JCExpression elsepart) argument
H A DJCTree.java1130 public JCStatement elsepart; field in class:JCTree.JCIf
1133 JCStatement elsepart)
1137 this.elsepart = elsepart;
1145 public JCStatement getElseStatement() { return elsepart; }
2143 JCExpression elsepart);
2144 JCIf If(JCExpression cond, JCStatement thenpart, JCStatement elsepart); argument
1131 JCIf(JCExpression cond, JCStatement thenpart, JCStatement elsepart) argument
2141 Conditional(JCExpression cond, JCExpression thenpart, JCExpression elsepart) argument

Completed in 34 milliseconds