1 /* 2 * Copyright (C) 2008 The Android Open Source Project 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 17 import org.clearsilver.HDF; 18 import org.clearsilver.CS; 19 import java.util.ArrayList; 20 21 public class ParsedTagInfo extends TagInfo 22 { 23 private ContainerInfo mContainer; 24 private String mCommentText; 25 private Comment mComment; 26 ParsedTagInfo(String name, String kind, String text, ContainerInfo base, SourcePositionInfo sp)27 ParsedTagInfo(String name, String kind, String text, ContainerInfo base, SourcePositionInfo sp) 28 { 29 super(name, kind, text, SourcePositionInfo.findBeginning(sp, text)); 30 mContainer = base; 31 mCommentText = text; 32 } 33 commentTags()34 public TagInfo[] commentTags() 35 { 36 if (mComment == null) { 37 mComment = new Comment(mCommentText, mContainer, position()); 38 } 39 return mComment.tags(); 40 } 41 setCommentText(String comment)42 protected void setCommentText(String comment) 43 { 44 mCommentText = comment; 45 } 46 47 public static <T extends ParsedTagInfo> TagInfo[] joinTags(T[] tags)48 joinTags(T[] tags) 49 { 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 } 59 return list.toArray(new TagInfo[list.size()]); 60 } 61 } 62