Home
last modified time | relevance | path

Searched refs:extendsBounds (Results 1 – 3 of 3) sorted by relevance

/external/doclava/src/com/google/doclava/
DTypeInfo.java118 if (other.extendsBounds() != null) { in TypeInfo()
119 mExtendsBounds = new ArrayList<TypeInfo>(other.extendsBounds()); in TypeInfo()
320 void setBounds(ArrayList<TypeInfo> superBounds, ArrayList<TypeInfo> extendsBounds) { in setBounds() argument
322 mExtendsBounds = extendsBounds; in setBounds()
329 public ArrayList<TypeInfo> extendsBounds() { in extendsBounds() method in TypeInfo
DInfoBuilder.java288 if (type.extendsBounds() != null && !type.extendsBounds().isEmpty()) { in printTypeName()
290 for (TypeInfo t : type.extendsBounds()) { in printTypeName()
291 if (t != type.extendsBounds().get(0)) { in printTypeName()
715 newType.setBounds(type.superBounds(), type.extendsBounds()); in buildFields()
890 ArrayList<TypeInfo> extendsBounds = new ArrayList<TypeInfo>(); in buildTypeVariables() local
930 extendsBounds.add(buildType(value)); in buildTypeVariables()
936 extendsBounds.add(buildType((ParseTree) obj)); in buildTypeVariables()
946 type.setBounds(superBounds, extendsBounds); in buildTypeVariables()
DConverter.java540 …ew ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(t.asWildcardType().extendsBounds()))));
575 if (t.asWildcardType().extendsBounds() != null) {
576 for (Type ty : t.asWildcardType().extendsBounds()) {