1 7 8 package com.sun.javadoc; 9 10 20 public interface Doc extends Comparable <Object > { 21 22 26 String commentText(); 27 28 34 Tag[] tags(); 35 36 47 Tag[] tags(String tagname); 48 49 54 SeeTag[] seeTags(); 55 56 67 Tag[] inlineTags(); 68 69 96 Tag[] firstSentenceTags(); 97 98 103 String getRawCommentText(); 104 105 110 void setRawCommentText(String rawDocumentation); 111 112 117 String name(); 118 119 132 int compareTo(Object obj); 133 134 139 boolean isField(); 140 141 147 boolean isEnumConstant(); 148 149 154 boolean isConstructor(); 155 156 162 boolean isMethod(); 163 164 170 boolean isAnnotationTypeElement(); 171 172 177 boolean isInterface(); 178 179 184 boolean isException(); 185 186 191 boolean isError(); 192 193 199 boolean isEnum(); 200 201 207 boolean isAnnotationType(); 208 209 217 boolean isOrdinaryClass(); 218 219 227 boolean isClass(); 228 229 234 boolean isIncluded(); 235 236 244 SourcePosition position(); 245 } 246 | Popular Tags |