Package com.sun.tools.javac.tree.JCTree

Examples of com.sun.tools.javac.tree.JCTree.JCWildcard


     
      for(JCExpression t : pt.getTypeArguments()) {
        parameters.add(new VarType(t));
      }
    } else if(type instanceof JCWildcard) {
      JCWildcard wt = (JCWildcard)type;
      if(null == wt.getBound()) name = "?"; else init(wt.getBound());
    } else throw new RuntimeException("Unsupported type: " + type + " :: " + type.getClass());
  }
View Full Code Here

TOP

Related Classes of com.sun.tools.javac.tree.JCTree.JCWildcard

Copyright © 2018 www.massapicom. 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.