Searched refs:tags (Results 1 - 25 of 67) sorted by relevance

123

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DReturnTaglet.java52 Tag[] tags = input.method.tags("return");
53 if (tags.length > 0) {
55 output.holderTag = tags[0];
57 tags[0].firstSentenceTags() : tags[0].inlineTags();
77 Tag[] tags = holder.tags(name);
81 if (tags.length > 0) {
88 if (tags
[all...]
H A DSeeTaglet.java51 Tag[] tags = input.method.seeTags();
52 if (tags.length > 0) {
54 output.holderTag = tags[0];
56 tags[0].firstSentenceTags() : tags[0].inlineTags();
64 SeeTag[] tags = holder.seeTags();
65 if (tags.length == 0 && holder instanceof MethodDoc) {
69 tags = inheritedDoc.holder.seeTags();
72 return writer.seeTagOutput(holder, tags);
H A DTagletWriter.java73 * Return the header for the param tags.
76 * @return the header for the param tags.
81 * Return the output for param tags.
101 * @param seeTags the array of See tags.
102 * @return the output of the see tags.
109 * @param simpleTags the array of simple tags.
110 * @return the output of the simple tags.
163 * @param doc the Doc that we are print tags for.
170 tagletManager.checkTags(doc, doc.tags(), false);
190 Tag[] tags
241 commentTagsToOutput(Tag holderTag, Tag[] tags) argument
254 commentTagsToOutput(Doc holderDoc, Tag[] tags) argument
269 commentTagsToOutput(Tag holderTag, Doc holderDoc, Tag[] tags, boolean isFirstSentence) argument
[all...]
H A DExpertTaglet.java81 public String toString(Tag[] tags) { argument
82 if (tags == null || tags.length == 0) return null;
86 for(Tag t:tags) {
H A DThrowsTaglet.java64 ThrowsTag[] tags = input.method.throwsTags();
65 for (int i = 0; i < tags.length; i++) {
66 if (input.tagId.equals(tags[i].exceptionName()) ||
67 (tags[i].exception() != null &&
68 (input.tagId.equals(tags[i].exception().qualifiedName())))) {
70 output.holderTag = tags[i];
72 tags[i].firstSentenceTags() : tags[i].inlineTags();
73 output.tagList.add(tags[i]);
74 } else if (exception != null && tags[
[all...]
H A DParamTaglet.java101 ParamTag[] tags = input.isTypeVariableParamTag ?
106 for (int i = 0; i < tags.length; i++) {
107 if (rankMap.containsKey(tags[i].parameterName()) &&
108 rankMap.get(tags[i].parameterName()).equals((input.tagId))) {
110 output.holderTag = tags[i];
112 tags[i].firstSentenceTags() : tags[i].inlineTags();
162 * @param holder the member that holds the param tags.
183 * Try to inherit the param tags that are missing.
185 * @param doc the doc that holds the param tags
[all...]
H A DSimpleTaglet.java43 * The marker in the location string for excluded tags.
212 if (header == null || holder.tags(getName()).length == 0) {
215 return writer.simpleTagOutput(holder.tags(getName()), header);
H A DTagletManager.java62 * The map of custom tags.
67 * The array of custom tags that can appear in packages.
72 * The array of custom tags that can appear in classes or interfaces.
77 * The array of custom tags that can appear in fields.
82 * The array of custom tags that can appear in constructors.
87 * The array of custom tags that can appear in methods.
92 * The array of custom tags that can appear in the overview.
97 * The array of custom tags that can appear in comments.
102 * The array of custom tags that can appear in the serialized form.
112 * Keep track of standard tags
379 checkTags(Doc doc, Tag[] tags, boolean areInlineTags) argument
[all...]
/openjdk7/langtools/test/tools/javadoc/
H A DInlineTagsWithBraces.java27 * @summary Verify that matching braces can appear within inline tags.
70 Tag[] tags = cd.inlineTags();
72 for (int i = 0; i < tags.length; i++) {
73 if (!tags[i].name().equals(expectedTags[i]) ||
74 !tags[i].text().equals(expectedText[i])) {
75 throw new Error("Tag \"" + tags[i] + "\" not as expected");
/openjdk7/langtools/test/com/sun/javadoc/testLegacyTaglet/
H A DToDoTaglet.java161 * @param tags the array of <code>Tag</code>s representing of this custom tag.
163 public String toString(Tag[] tags) { argument
164 if (tags.length == 0) {
169 for (int i = 0; i < tags.length; i++) {
173 result += tags[i].text();
H A DUnderlineTaglet.java128 * This method should not be called since arrays of inline tags do not
131 * @param tags the array of <code>Tag</code>s representing of this custom tag.
133 public String toString(Tag[] tags) { argument
/openjdk7/langtools/test/com/sun/javadoc/testTagHolderMethod/
H A DTestTagHolderMethod.java61 Tag[] tags = holder.tags();
62 for (int j = 0; j < tags.length; j++) {
63 if (! tags[j].holder().name().equals(holder.name())) {
66 System.out.println(tags[j].name() + " is held by " + holder.name());
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DDoc.java50 * Return all tags in this Doc item.
52 * @return an array of {@link Tag} objects containing all tags on
55 Tag[] tags(); method in interface:Doc
58 * Return tags of the specified {@linkplain Tag#kind() kind} in
61 * For example, if 'tagname' has value "@serial", all tags in
65 * @return an array of Tag containing all tags whose 'kind()'
68 Tag[] tags(String tagname); method in interface:Doc
71 * Return the see also tags in this Doc item.
73 * @return an array of SeeTag containing all @see tags.
78 * Return comment as an array of tags
[all...]
/openjdk7/jdk/test/sun/java2d/cmm/ProfileOp/
H A DReadProfileTest.java46 static Hashtable [] tags; field in class:ReadProfileTest
55 static void getProfileTags(byte [] data, Hashtable tags) { argument
68 tags.put(tagSig, tagData);
74 tags = new Hashtable[cspaces.length];
79 tags[i] = new Hashtable();
80 getProfileTags(profiles[i], tags[i]);
99 Iterator<Integer> iter = tags[i].keySet().iterator();
104 (byte[]) tags[i].get(tagSig)))
H A DReadWriteProfileTest.java27 * @summary Verifies reading and writing profiles and tags of the standard color
46 static Hashtable<Integer,byte[]> [] tags; field in class:ReadWriteProfileTest
54 static void getProfileTags(byte [] data, Hashtable tags) { argument
67 tags.put(tagSig, tagData);
73 tags = new Hashtable[cspaces.length];
78 tags[i] = new Hashtable();
79 getProfileTags(profiles[i], tags[i]);
94 for (int tagSig : tags[i].keySet()) {
111 if (!Arrays.equals(tagData1, tags[i].get(tagSig)))
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/
H A DTaglet.java67 * false for inline tags.
77 * false for inline tags.
87 * false for inline tags.
97 * false for inline tags.
107 * false for inline tags.
117 * interfaces). Set to false for inline tags.
152 * @param tags the array of <code>Tag</code>s representing of this custom tag.
155 public abstract String toString(Tag[] tags); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DTaggedMethodFinder.java41 return method.paramTags().length + method.tags("return").length +
/openjdk7/jdk/make/tools/swing-beans/
H A DGenDocletBeanInfo.java157 // Examine the javadoc tags and look for the the @beaninfo tag
159 Tag[] tags = classes[cnt].tags();
160 for (int i = 0; i < tags.length; i++) {
161 if (tags[i].kind().equalsIgnoreCase("@beaninfo")) {
163 System.out.println("GenDocletBeanInfo: found @beaninfo tagged Class: " + tags[i].text());
164 dbi = genDocletInfo(tags[i].text(), classes[cnt].name());
176 tags = methods[j].tags();
177 for (int x = 0; x < tags
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/
H A DEnumEditor.java49 private final String[] tags; field in class:EnumEditor
59 this.tags = new String[values.length];
61 this.tags[i] = ( ( Enum )values[i] ).name();
107 return this.tags.clone();
/openjdk7/langtools/test/tools/javadoc/annotations/annotatePackage/
H A DMain.java50 for (Tag tag : pkg.tags())
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolParser.java39 final byte[] tags; field in class:ConstantPoolParser
56 this.tags = new byte[firstHeader[4]];
89 return tags[index];
195 for (int i = 1; i < tags.length; ) {
197 assert(tags[i] == 0 || tags[i] == tag);
198 tags[i] = tag;
204 tags[i] = tag;
226 tags[i] = tag;
234 tags[
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlSerialFieldWriter.java37 * Documentation denoted by the tags <code>serial</code> and
168 Tag[] tags = field.tags("serial");
169 if (tags.length > 0) {
170 writer.addInlineComment(field, tags[0], contentTree);
193 * @param contentTree the tree to which the member tags info will be added
212 * for deprecation info, comment or tags, do not print overview details.
223 if (field.tags("deprecated").length > 0)
H A DTagletWriterImpl.java73 Tag[] deprs = doc.tags("deprecated");
270 public TagletOutput commentTagsToOutput(Tag holderTag, Tag[] tags) { argument
271 return commentTagsToOutput(holderTag, null, tags, false);
277 public TagletOutput commentTagsToOutput(Doc holderDoc, Tag[] tags) { argument
278 return commentTagsToOutput(null, holderDoc, tags, false);
285 Doc holderDoc, Tag[] tags, boolean isFirstSentence) {
287 holderTag, holderDoc, tags, isFirstSentence));
284 commentTagsToOutput(Tag holderTag, Doc holderDoc, Tag[] tags, boolean isFirstSentence) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DDocImpl.java79 * Cached inline tags.
119 * Return all tags in this Doc item.
121 * @return an array of TagImpl containing all tags on this Doc item.
123 public Tag[] tags() { method in class:DocImpl
124 return comment().tags();
128 * Return tags of the specified kind in this Doc item.
131 * @return an array of TagImpl containing all tags whose 'kind()'
134 public Tag[] tags(String tagname) { method in class:DocImpl
135 return comment().tags(tagname);
139 * Return the see also tags i
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DSerializedFormBuilder.java340 * Build the method tags.
349 && method.tags("serialData").length == 0) {
379 // Check to see if there are inline comments, tags or deprecation
458 * Build the serial field tags information.
471 SerialFieldTag[] tags = field.serialFieldTags();
472 Arrays.sort(tags);
473 int tagsLength = tags.length;
477 fieldWriter.addMemberHeader(tags[i].fieldTypeDoc(),
478 tags[i].fieldType(), "", tags[
[all...]

Completed in 47 milliseconds

123