Lines Matching refs:DCTree

53 public abstract class DCTree implements DocTree {  class
89 public static abstract class DCEndPosTree<T extends DCEndPosTree<T>> extends DCTree {
105 public static class DCDocComment extends DCTree implements DocCommentTree {
108 public final List<DCTree> fullBody;
109 public final List<DCTree> firstSentence;
110 public final List<DCTree> body;
111 public final List<DCTree> tags;
112 public final List<DCTree> preamble;
113 public final List<DCTree> postamble;
116 List<DCTree> fullBody, in DCDocComment()
117 List<DCTree> firstSentence, in DCDocComment()
118 List<DCTree> body, in DCDocComment()
119 List<DCTree> tags, in DCDocComment()
120 List<DCTree> preamble, in DCDocComment()
121 List<DCTree> postamble) { in DCDocComment()
172 public static abstract class DCBlockTag extends DCTree implements BlockTagTree {
186 public static class DCAttribute extends DCTree implements AttributeTree {
189 public final List<DCTree> value;
191 DCAttribute(Name name, ValueKind vkind, List<DCTree> value) { in DCAttribute()
219 public List<DCTree> getValue() { in getValue()
225 public final List<DCTree> name;
227 DCAuthor(List<DCTree> name) { in DCAuthor()
247 public static class DCComment extends DCTree implements CommentTree {
271 public final List<DCTree> body;
273 DCDeprecated(List<DCTree> body) { in DCDeprecated()
306 public static class DCDocType extends DCTree implements DocTypeTree {
329 public static class DCEndElement extends DCTree implements EndElementTree {
352 public static class DCEntity extends DCTree implements EntityTree {
375 …public static class DCErroneous extends DCTree implements ErroneousTree, JCDiagnostic.DiagnosticPo…
432 public final List<DCTree> body;
434 DCHidden(List<DCTree> body) { in DCHidden()
454 public static class DCIdentifier extends DCTree implements IdentifierTree {
478 public final DCTree term;
479 public final List<DCTree> description;
481 DCIndex(DCTree term, List<DCTree> description) { in DCIndex()
522 public final List<DCTree> label;
524 DCLink(Kind kind, DCReference ref, List<DCTree> label) { in DCLink()
581 public final List<DCTree> description;
583 DCParam(boolean isTypeParameter, DCIdentifier name, List<DCTree> description) { in DCParam()
617 public final List<DCTree> description;
619 DCProvides(DCReference serviceType, List<DCTree> description) { in DCProvides()
679 public final List<DCTree> description;
681 DCReturn(List<DCTree> description) { in DCReturn()
702 public final List<DCTree> reference;
704 DCSee(List<DCTree> reference) { in DCSee()
725 public final List<DCTree> description;
727 DCSerial(List<DCTree> description) { in DCSerial()
748 public final List<DCTree> description;
750 DCSerialData(List<DCTree> description) { in DCSerialData()
773 public final List<DCTree> description;
775 DCSerialField(DCIdentifier name, DCReference type, List<DCTree> description) { in DCSerialField()
808 public final List<DCTree> body;
810 DCSince(List<DCTree> body) { in DCSince()
832 public final List<DCTree> attrs;
835 DCStartElement(Name name, List<DCTree> attrs, boolean selfClosing) { in DCStartElement()
868 public final List<DCTree> summary;
870 DCSummary(List<DCTree> summary) { in DCSummary()
890 public static class DCText extends DCTree implements TextTree {
916 public final List<DCTree> description;
918 DCThrows(Kind kind, DCReference name, List<DCTree> description) { in DCThrows()
948 public final List<DCTree> content;
950 DCUnknownBlockTag(Name name, List<DCTree> content) { in DCUnknownBlockTag()
978 public final List<DCTree> content;
980 DCUnknownInlineTag(Name name, List<DCTree> content) { in DCUnknownInlineTag()
1008 public final List<DCTree> description;
1010 DCUses(DCReference serviceType, List<DCTree> description) { in DCUses()
1060 public final List<DCTree> body;
1062 DCVersion(List<DCTree> body) { in DCVersion()