src/share/classes/com/sun/tools/javac/tree/TreeMaker.java

changeset 969
8cc5b440fdde
parent 904
4baab658f357
child 1127
ca49d50318dc
equal deleted inserted replaced
960:26b065bb4ee7 969:8cc5b440fdde
433 JCTypeApply tree = new JCTypeApply(clazz, arguments); 433 JCTypeApply tree = new JCTypeApply(clazz, arguments);
434 tree.pos = pos; 434 tree.pos = pos;
435 return tree; 435 return tree;
436 } 436 }
437 437
438 public JCTypeDisjunction TypeDisjunction(List<JCExpression> components) { 438 public JCTypeUnion TypeUnion(List<JCExpression> components) {
439 JCTypeDisjunction tree = new JCTypeDisjunction(components); 439 JCTypeUnion tree = new JCTypeUnion(components);
440 tree.pos = pos; 440 tree.pos = pos;
441 return tree; 441 return tree;
442 } 442 }
443 443
444 public JCTypeParameter TypeParameter(Name name, List<JCExpression> bounds) { 444 public JCTypeParameter TypeParameter(Name name, List<JCExpression> bounds) {

mercurial