blob: aad376796f1d6fd5c6eaf9803b581ed09279ad6f [file] [log] [blame]
Ben Dodson920dbbb2010-08-04 15:21:06 -07001/*
2 * Copyright (C) 2010 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.google.doclava;
18
19import java.util.ArrayList;
20
21public class ParsedTagInfo extends TagInfo {
C. Sean Youngda4b2e22015-05-18 14:12:30 -050022 public static final ParsedTagInfo[] EMPTY_ARRAY = new ParsedTagInfo[0];
23
24 public static ParsedTagInfo[] getArray(int size) {
25 return size == 0 ? EMPTY_ARRAY : new ParsedTagInfo[size];
26 }
27
Ben Dodson920dbbb2010-08-04 15:21:06 -070028 private ContainerInfo mContainer;
29 private String mCommentText;
30 private Comment mComment;
31
32 ParsedTagInfo(String name, String kind, String text, ContainerInfo base, SourcePositionInfo sp) {
33 super(name, kind, text, SourcePositionInfo.findBeginning(sp, text));
34 mContainer = base;
35 mCommentText = text;
36 }
37
38 public TagInfo[] commentTags() {
39 if (mComment == null) {
40 mComment = new Comment(mCommentText, mContainer, position());
41 }
42 return mComment.tags();
43 }
44
45 protected void setCommentText(String comment) {
46 mCommentText = comment;
47 }
48
49 public static <T extends ParsedTagInfo> TagInfo[] joinTags(T[] tags) {
50 ArrayList<TagInfo> list = new ArrayList<TagInfo>();
51 final int N = tags.length;
52 for (int i = 0; i < N; i++) {
53 TagInfo[] t = tags[i].commentTags();
54 final int M = t.length;
55 for (int j = 0; j < M; j++) {
56 list.add(t[j]);
57 }
58 }
C. Sean Youngda4b2e22015-05-18 14:12:30 -050059 return list.toArray(TagInfo.getArray(list.size()));
Ben Dodson920dbbb2010-08-04 15:21:06 -070060 }
61}