Package lombok.ast

Examples of lombok.ast.TypeVariable.astName()


      }
    }
   
    @Override public void visitTypeParameter(JCTypeParameter node) {
      TypeVariable var = new TypeVariable();
      var.astName(setPos(node, new Identifier().astValue(node.name.toString())));
      fillList(node.bounds, var.rawExtending(), FlagKey.TYPE_REFERENCE);
      set(node, var);
    }
   
    @Override public void visitTypeArray(JCArrayTypeTree node) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.