1 7 8 package com.sun.javadoc; 9 10 16 public interface ExecutableMemberDoc extends MemberDoc { 17 18 32 ClassDoc[] thrownExceptions(); 33 34 42 Type[] thrownExceptionTypes(); 43 44 47 boolean isNative(); 48 49 52 boolean isSynchronized(); 53 54 60 public boolean isVarArgs(); 61 62 70 Parameter[] parameters(); 71 72 78 ThrowsTag[] throwsTags(); 79 80 87 ParamTag[] paramTags(); 88 89 96 ParamTag[] typeParamTags(); 97 98 103 String signature(); 104 105 112 String flatSignature(); 113 114 121 TypeVariable[] typeParameters(); 122 } 123 | Popular Tags |