src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/CodeTaglet.java

changeset 1751
ca8808c88f94
parent 1743
6a5288a298fd
child 2525
2eb010b6cb22
equal deleted inserted replaced
1750:081d7c72ee92 1751:ca8808c88f94
24 */ 24 */
25 package com.sun.tools.doclets.internal.toolkit.taglets; 25 package com.sun.tools.doclets.internal.toolkit.taglets;
26 26
27 import java.util.Map; 27 import java.util.Map;
28 import com.sun.javadoc.Tag; 28 import com.sun.javadoc.Tag;
29 import com.sun.tools.doclets.internal.toolkit.Content;
29 30
30 /** 31 /**
31 * An inline Taglet used to denote literal code fragments. 32 * An inline Taglet used to denote literal code fragments.
32 * The enclosed text is interpreted as not containing HTML markup or 33 * The enclosed text is interpreted as not containing HTML markup or
33 * nested javadoc tags, and is rendered in a font suitable for code. 34 * nested javadoc tags, and is rendered in a font suitable for code.
62 } 63 }
63 64
64 /** 65 /**
65 * {@inheritDoc} 66 * {@inheritDoc}
66 */ 67 */
67 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { 68 public Content getTagletOutput(Tag tag, TagletWriter writer) {
68 return writer.codeTagOutput(tag); 69 return writer.codeTagOutput(tag);
69 } 70 }
70 } 71 }

mercurial