Searched refs:Tag (Results 1 - 25 of 110) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTML.java50 public static class Tag { class in class:HTML
53 public Tag() {} method in class:HTML.Tag
56 * Creates a new <code>Tag</code> with the specified <code>id</code>,
62 protected Tag(String id) { method in class:HTML.Tag
67 * Creates a new <code>Tag</code> with the specified <code>id</code>;
77 protected Tag(String id, boolean causesBreak, boolean isBlock) { method in class:HTML.Tag
157 // --- Tag Names -----------------------------------
159 public static final Tag A = new Tag("a");
160 public static final Tag ADDRES
[all...]
H A DHTMLDocument.java57 * always have a value of type <code>HTML.Tag</code> that identifies
133 * StyleConstants.NameAttribute, HTML.Tag.P)</code> returns the first
142 * <p>The {@link #getIterator(HTML.Tag t)} method can also be used for
339 * <code>getReader(int, int, int, HTML.Tag, TRUE)</code>.
352 HTML.Tag insertTag) {
377 HTML.Tag insertTag,
540 * @param t the requested <code>HTML.Tag</code>
542 * @see javax.swing.text.html.HTML.Tag
544 public Iterator getIterator(HTML.Tag t) {
594 a.addAttribute(StyleConstants.NameAttribute, HTML.Tag
[all...]
H A DHTMLEditorKit.java285 HTML.Tag insertTag) throws
456 if (o instanceof HTML.Tag) {
457 HTML.Tag tag = (HTML.Tag)o;
460 if(tag == HTML.Tag.IMG) {
466 HTML.Tag.CONTENT);
468 else if (tag == HTML.Tag.HR || tag == HTML.Tag.BR) {
471 HTML.Tag.CONTENT);
473 else if (tag == HTML.Tag
[all...]
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DParamTag.java37 public interface ParamTag extends Tag {
H A DTag.java48 public interface Tag { interface
61 * Return the containing {@link Doc} of this Tag element.
97 * tags, return an array of <code>Tag</code> objects. The entire
102 * Each string is represented by a <code>Tag</code> object of
111 * return an array of Tag objects:
113 * <li> tags[0] is a {@link Tag} with name "Text" and text consisting
117 * <li> tags[2] is a {@link Tag} with name "Text" and text consisting
121 * @return Tag[] array of tags
125 Tag[] inlineTags();
132 * Each section of plain text is represented as a {@link Tag}
[all...]
H A DDoc.java52 * @return an array of {@link Tag} objects containing all tags on
55 Tag[] tags();
58 * Return tags of the specified {@linkplain Tag#kind() kind} in
65 * @return an array of Tag containing all tags whose 'kind()'
68 Tag[] tags(String tagname);
81 * Each section of plain text is represented as a {@link Tag}
82 * of {@linkplain Tag#kind() kind} "Text".
86 * @return an array of {@link Tag}s representing the comment
88 Tag[] inlineTags();
95 * Each section of plain text is represented as a {@link Tag}
[all...]
H A DThrowsTag.java38 public interface ThrowsTag extends Tag {
H A DSeeTag.java45 public interface SeeTag extends Tag {
H A DSerialFieldTag.java46 public interface SerialFieldTag extends Tag, Comparable<Object> {
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DTextTag.java40 public class TextTag implements Tag {
92 public Tag[] inlineTags() {
93 return new Tag[] {this};
99 public Tag[] firstSentenceTags() {
100 return new Tag[] {this};
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DJNITypeParser.java155 case (JDWP.Tag.ARRAY):
158 case (JDWP.Tag.OBJECT):
166 case (JDWP.Tag.VOID):
167 case (JDWP.Tag.BOOLEAN):
168 case (JDWP.Tag.BYTE):
169 case (JDWP.Tag.CHAR):
170 case (JDWP.Tag.SHORT):
171 case (JDWP.Tag.INT):
172 case (JDWP.Tag.LONG):
173 case (JDWP.Tag
[all...]
H A DBooleanTypeImpl.java36 return String.valueOf((char)JDWP.Tag.BOOLEAN);
H A DByteTypeImpl.java37 return String.valueOf((char)JDWP.Tag.BYTE);
H A DCharTypeImpl.java37 return String.valueOf((char)JDWP.Tag.CHAR);
H A DDoubleTypeImpl.java37 return String.valueOf((char)JDWP.Tag.DOUBLE);
H A DFloatTypeImpl.java37 return String.valueOf((char)JDWP.Tag.FLOAT);
H A DIntegerTypeImpl.java37 return String.valueOf((char)JDWP.Tag.INT);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/
H A DTaglet.java139 * Given the <code>Tag</code> representation of this custom
142 * @param tag the <code>Tag</code> representation of this custom tag.
143 * @return the string representation of this <code>Tag</code>.
145 public abstract String toString(Tag tag);
148 * Given an array of <code>Tag</code>s representing this custom
152 * @param tags the array of <code>Tag</code>s representing of this custom tag.
153 * @return the string representation of this <code>Tag</code>.
155 public abstract String toString(Tag[] tags);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DTagletWriter.java96 protected abstract TagletOutput returnTagOutput(Tag returnTag);
112 protected abstract TagletOutput simpleTagOutput(Tag[] simpleTags,
121 protected abstract TagletOutput simpleTagOutput(Tag simpleTag, String header);
190 Tag[] tags = doc.tags(taglets[i].getName());
212 Tag holderTag, Tag inlineTag, TagletWriter tagletWriter) {
241 public abstract TagletOutput commentTagsToOutput(Tag holderTag, Tag[] tags);
254 public abstract TagletOutput commentTagsToOutput(Doc holderDoc, Tag[] tags);
269 public abstract TagletOutput commentTagsToOutput(Tag holderTa
[all...]
H A DBasePropertyTaglet.java28 import com.sun.javadoc.Tag;
54 * Given the <code>Tag</code> representation of this custom
57 * @param tag the <code>Tag</code> representation of this custom tag.
59 * @return the TagletOutput representation of this <code>Tag</code>.
61 public TagletOutput getTagletOutput(Tag tag, TagletWriter tagletWriter) {
H A DCodeTaglet.java28 import com.sun.javadoc.Tag;
63 public String toString(Tag tag) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DTagImpl.java46 class TagImpl implements Tag {
55 private Tag[] firstSentence;
60 private Tag[] inlineTags;
79 * Return the containing {@link Doc} of this Tag element.
152 public Tag[] inlineTags() {
162 public Tag[] firstSentenceTags() {
H A DComment.java46 private final ListBuffer<Tag> tagList = new ListBuffer<Tag>();
196 Tag[] tags() {
197 return tagList.toArray(new Tag[tagList.length()]);
203 Tag[] tags(String tagname) {
204 ListBuffer<Tag> found = new ListBuffer<Tag>();
209 for (Tag tag : tagList) {
214 return found.toArray(new Tag[found.length()]);
222 for (Tag nex
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DTag.java41 public class Tag{ class
48 public Tag(int len, int new_tag, Integer new_time, Integer new_usec) { method in class:Tag
55 public Tag(int new_tag) { method in class:Tag
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DTagElement.java39 HTML.Tag htmlTag;
67 public HTML.Tag getHTMLTag() {

Completed in 77 milliseconds

12345