Searched refs:ThrowsTag (Results 1 - 8 of 8) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DThrowsTag.java38 public interface ThrowsTag extends Tag { interface in inherits:Tag
42 * associated with this <code>ThrowsTag</code>.
50 * associated with this <code>ThrowsTag</code>.
72 * associated with this <code>ThrowsTag</code>.
H A DExecutableMemberDoc.java96 ThrowsTag[] throwsTags();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DThrowsTaglet.java55 ThrowsTag throwsTag = (ThrowsTag) input.tag;
64 ThrowsTag[] tags = input.method.throwsTags();
127 declaredExceptionTags.toArray(new ThrowsTag[] {}),
138 ThrowsTag[] tags = execHolder.throwsTags();
156 * @param throwTags the array of <code>ThrowsTag</code>s to convert.
163 protected TagletOutput throwsTagsOutput(ThrowsTag[] throwTags,
168 ThrowsTag tt = throwTags[i];
H A DTagletWriter.java136 protected abstract TagletOutput throwsTagOutput(ThrowsTag throwsTag);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DThrowsTagImpl.java41 class ThrowsTagImpl extends TagImpl implements ThrowsTag {
H A DComment.java220 ThrowsTag[] throwsTags() {
221 ListBuffer<ThrowsTag> found = new ListBuffer<ThrowsTag>();
223 if (next instanceof ThrowsTag) {
224 found.append((ThrowsTag)next);
227 return found.toArray(new ThrowsTag[found.length()]);
H A DExecutableMemberDocImpl.java125 public ThrowsTag[] throwsTags() {
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DTagletWriterImpl.java231 public TagletOutput throwsTagOutput(ThrowsTag throwsTag) {

Completed in 52 milliseconds