langtools/src/share/classes/com/sun/tools/javac/tree/TreeMaker.java
changeset 5492 515e4b33b335
parent 4870 a132763160d7
child 5520 86e4b9a9da40
equal deleted inserted replaced
5491:899e1748bb17 5492:515e4b33b335
   438         return tree;
   438         return tree;
   439     }
   439     }
   440 
   440 
   441     public JCTypeApply TypeApply(JCExpression clazz, List<JCExpression> arguments) {
   441     public JCTypeApply TypeApply(JCExpression clazz, List<JCExpression> arguments) {
   442         JCTypeApply tree = new JCTypeApply(clazz, arguments);
   442         JCTypeApply tree = new JCTypeApply(clazz, arguments);
       
   443         tree.pos = pos;
       
   444         return tree;
       
   445     }
       
   446 
       
   447     public JCTypeDisjoint TypeDisjoint(List<JCExpression> components) {
       
   448         JCTypeDisjoint tree = new JCTypeDisjoint(components);
   443         tree.pos = pos;
   449         tree.pos = pos;
   444         return tree;
   450         return tree;
   445     }
   451     }
   446 
   452 
   447     public JCTypeParameter TypeParameter(Name name, List<JCExpression> bounds) {
   453     public JCTypeParameter TypeParameter(Name name, List<JCExpression> bounds) {