List of usage examples for org.eclipse.jdt.core.dom WildcardType annotations
public List annotations()
From source file:org.whole.lang.java.util.JDTTransformerVisitor.java
License:Open Source License
public boolean visit(WildcardType node) { if (acceptChild(node.getBound())) { type = conditionalWrapWithAnnotatedType( lf.createWildcardType(type, lf.createUpperBound(node.isUpperBound())), node.annotations()); } else {/*w w w. jav a2s. c o m*/ type = conditionalWrapWithAnnotatedType(lf.createWildcardType(), node.annotations()); } return false; }