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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java275 JCExpression thenpart,
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.java1129 public JCStatement thenpart; field in class:JCTree.JCIf
1132 JCStatement thenpart,
1136 this.thenpart = thenpart;
1144 public JCStatement getThenStatement() { return thenpart; }
2142 JCExpression thenpart,
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 288 milliseconds