1 7 8 package com.sun.javadoc; 9 10 21 public interface Type { 22 23 29 String typeName(); 30 31 37 String qualifiedTypeName(); 38 39 49 String simpleTypeName(); 50 51 57 String dimension(); 58 59 70 String toString(); 71 72 78 boolean isPrimitive(); 79 80 93 ClassDoc asClassDoc(); 94 95 104 ParameterizedType asParameterizedType(); 105 106 114 TypeVariable asTypeVariable(); 115 116 124 WildcardType asWildcardType(); 125 126 134 AnnotationTypeDoc asAnnotationTypeDoc(); 135 } 136 | Popular Tags |