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

changeset 1751
ca8808c88f94
parent 1743
6a5288a298fd
child 2525
2eb010b6cb22
equal deleted inserted replaced
1750:081d7c72ee92 1751:ca8808c88f94
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 28
29 import com.sun.javadoc.Tag; 29 import com.sun.javadoc.Tag;
30 import com.sun.tools.doclets.internal.toolkit.Content;
30 31
31 32
32 /** 33 /**
33 * An inline Taglet used to denote literal text. 34 * An inline Taglet used to denote literal text.
34 * The enclosed text is interpreted as not containing HTML markup or 35 * The enclosed text is interpreted as not containing HTML markup or
61 } 62 }
62 63
63 /** 64 /**
64 * {@inheritDoc} 65 * {@inheritDoc}
65 */ 66 */
66 public TagletOutput getTagletOutput(Tag tag, TagletWriter writer) { 67 public Content getTagletOutput(Tag tag, TagletWriter writer) {
67 return writer.literalTagOutput(tag); 68 return writer.literalTagOutput(tag);
68 } 69 }
69 } 70 }

mercurial